dotfiles/nvim/.config/nvim/lua/plugins/orgmode.lua
2025-12-28 19:44:16 +01:00

11 lines
257 B
Lua

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