#+OPTIONS: H:9 ^:nil * Installation ** Installation methods Orgmode can be installed with any package manager. Here are few examples: 1. [[https://github.com/folke/lazy.nvim][lazy.nvim]] (Recommended) #+begin_src lua return { 'nvim-orgmode/orgmode', event = 'VeryLazy', config = function() require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) -- Experimental LSP support vim.lsp.enable('org') end, } #+end_src 2. vim.pack (Available only in Neovim 0.12+) #+begin_src lua vim.pack.add({ { src = 'https://github.com/nvim-orgmode/orgmode '} }) require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) -- Experimental LSP support vim.lsp.enable('org') #+end_src 3. [[https://github.com/lewis6991/pckr.nvim][pckr.nvim]] #+begin_src lua require('pckr').add({ { 'nvim-orgmode/orgmode', config = function() require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) end } }) #+end_src 4. [[https://github.com/junegunn/vim-plug][vim-plug]] #+begin_src vim Plug 'nvim-orgmode/orgmode' lua << EOF require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) EOF #+end_src 5. [[https://github.com/Shougo/dein.vim][dein.vim]] #+begin_src vim call dein#add('nvim-orgmode/orgmode') lua << EOF require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) EOF #+end_src ** Useful links - [[file:./configuration.org][Configuration]] - [[file:./plugins.org][Plugins]]