mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2026-08-17 07:02:48 +01:00
19 lines
482 B
Lua
19 lines
482 B
Lua
return {
|
|
{
|
|
"nvim-orgmode/orgmode",
|
|
event = "VeryLazy",
|
|
config = function()
|
|
-- Setup orgmode
|
|
require("orgmode").setup({
|
|
org_agenda_files = "~/orgfiles/**/*",
|
|
org_default_notes_file = "~/orgfiles/refile.org",
|
|
mappings = {
|
|
prefix = "<leader>a",
|
|
},
|
|
})
|
|
-- Enable org LSP
|
|
vim.lsp.enable("org")
|
|
end,
|
|
},
|
|
}
|