Installation

Use your favourite package manager:

packager.add('nvim-treesitter/nvim-treesitter')
packager.add('nvim-orgmode/orgmode')

Recommended

use {'nvim-treesitter/nvim-treesitter'}
use {'nvim-orgmode/orgmode', config = function()
        require('orgmode').setup{}
end
}

Lazy loading (Not recommended)

Lazy loading via ft option works, but not completely. Global mappings are not set because plugin is not initialized on startup. Above setup has startup time of somewhere between 1 and 3 ms, so there are no many benefits in lazy loading. If you want to do it anyway, here’s the lazy load setup:

use {'nvim-treesitter/nvim-treesitter'}
use {'nvim-orgmode/orgmode',
    ft = {'org'},
    config = function()
            require('orgmode').setup{}
    end
    }
Plug 'nvim-treesitter/nvim-treesitter'
Plug 'nvim-orgmode/orgmode'
call dein#add('nvim-treesitter/nvim-treesitter')
call dein#add('nvim-orgmode/orgmode')