cerulean
This commit is contained in:
parent
ac95603fc4
commit
61b531aa11
42 changed files with 1061 additions and 445 deletions
16
homes/modules/vim/lua/plugins/orgmode.lua
Normal file
16
homes/modules/vim/lua/plugins/orgmode.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# options: https://github.com/nvim-orgmode/orgmode/blob/master/docs/installation.org
|
||||
return {
|
||||
{
|
||||
"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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue