This commit is contained in:
Thomas Ruoff
2024-06-26 21:52:49 +02:00
parent d684fa23cc
commit 2c152c5ef3
7 changed files with 63 additions and 6 deletions

View File

@@ -7,13 +7,14 @@ return {
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' },
-- })
require('nvim-treesitter.configs').setup {
ensure_installed = 'all',
ignore_install = { 'org' },
}
end,
}