Files
Christopher Williams 11932ebf7f Tweak Orgmode
2026-01-12 09:21:38 -05:00

33 lines
628 B
Lua

local M = {
{
"nvim-orgmode/orgmode",
tag = "0.7.0",
event = "VeryLazy",
ft = { "org" },
config = function()
require("orgmode").setup({
or_startup_folded = 'showeverything',
org_agenda_files = "~/org/**/*",
org_default_notes_file = "~/org/refile.org",
})
-- Create TANGLE command
vim.api.nvim_create_user_command("TANGLE", function()
require("orgmode").action("org_mappings.org_babel_tangle")
end, {})
end,
},
{
"chipsenkbeil/org-roam.nvim",
tag = "0.2.0",
config = function()
require("org-roam").setup({
directory = "~/org",
})
end,
},
}
return M