nvim/lua/custom/plugins/orgmode.lua
2024-04-18 16:21:39 -03:00

13 lines
265 B
Lua

return {
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup({
org_agenda_files = '~/orgfiles/**/*',
org_default_notes_file = '~/orgfiles/refile.org',
})
end,
}