orgmode fixed, added comment plugin, added formatter

This commit is contained in:
foxora 2026-02-24 19:54:52 +00:00
parent 520d4ddc41
commit 695fede97d
9 changed files with 329 additions and 209 deletions

View file

@ -0,0 +1,16 @@
# options: https://github.com/nvim-orgmode/orgmode/blob/master/docs/installation.org
return {
{
"nvim-orgmode/orgmode",
event = { "FileType" },
ft = { "org" },
after = function(plugin)
require("orgmode").setup({
org_agenda_files = "~/.orgmode/**/*",
org_default_notes_file = "~/.orgmode/refile.org",
})
vim.lsp.enable("org")
end,
},
}