12 lines
233 B
Lua
12 lines
233 B
Lua
|
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
|
||
|
}
|