Orgmode can be installed with any package manager. Here are few examples:
- lazy.nvim (Recommended)
{ 'nvim-orgmode/orgmode', event = 'VeryLazy', config = function() require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) end, }
- pckr.nvim
require('pckr').add({ { 'nvim-orgmode/orgmode', config = function() require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) end } })
- vim-plug
Plug 'nvim-orgmode/orgmode' lua << EOF require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) EOF
- dein.vim
call dein#add('nvim-orgmode/orgmode') lua << EOF require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) EOF