You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
292 B
Lua

return {
"nvim-orgmode/orgmode",
ft = { "org" },
config = function()
local org = require("orgmode")
org.setup_ts_grammar()
org.setup({
org_agenda_files = { "~/Documents/org/*" },
org_default_notes_file = "~/Documents/org/refile.org",
})
end,
}