Installation
Installation methods
Orgmode can be installed with any package manager. Here are few examples:
Built-in package manager (Recommended)
luavim.pack.add({ 'https://github.com/nvim-orgmode/orgmode' }) -- Setup orgmode require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) -- Experimental LSP support vim.lsp.enable('org')- 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, } - lua
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 'nvim-orgmode/orgmode' lua << EOF require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) EOF - vim
call dein#add('nvim-orgmode/orgmode') lua << EOF require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*', org_default_notes_file = '~/orgfiles/refile.org', }) EOF