Files
nvim/lua/plugins/orgmode.lua
Thomas Ruoff 2c152c5ef3 wip
2024-06-26 21:52:49 +02:00

21 lines
569 B
Lua

return {
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup {
org_agenda_files = '~/org/**/*',
org_default_notes_file = '~/org/refile.org',
org_todo_keywords = { 'TODO', 'WAITING', '|', 'DONE', 'DELEGATED' },
}
-- NOTE: If you are using nvim-treesitter with `ensure_installed = "all"` option
-- add `org` to ignore_install
require('nvim-treesitter.configs').setup {
ensure_installed = 'all',
ignore_install = { 'org' },
}
end,
}