Dotfiles/.config/nvim/lua/plugins/orgmode.lua

12 lines
233 B
Lua
Raw Normal View History

2024-08-12 15:37:08 +00:00
return {
"nvim-orgmode/orgmode",
event = "VeryLazy",
ft = { "org" },
config = function()
require("orgmode").setup({
org_agenda_files = "~/org/**/*",
org_default_notes_file = "~/org/refile.org",
})
end
}