org no longer seems to be in tree-sitter

This commit is contained in:
Warwick 2025-03-25 11:06:41 +00:00
parent 311706000e
commit 532c9c0f17

View file

@ -1,15 +1,15 @@
-- Treesitter configuration
require('nvim-treesitter.configs').setup({
-- If TS highlights are not enabled at all, or disabled via `disable` prop,
-- highlighting will fallback to default Vim syntax highlighting
highlight = {
enable = true,
-- Required for spellcheck, some LaTex highlights and
-- code block highlights that do not have ts grammar
additional_vim_regex_highlighting = { 'org' },
},
ensure_installed = { 'org' }, -- Or run :TSUpdate org
})
--require('nvim-treesitter.configs').setup({
-- -- If TS highlights are not enabled at all, or disabled via `disable` prop,
-- -- highlighting will fallback to default Vim syntax highlighting
-- highlight = {
-- enable = true,
-- -- Required for spellcheck, some LaTex highlights and
-- -- code block highlights that do not have ts grammar
-- additional_vim_regex_highlighting = { 'org' },
-- },
-- ensure_installed = { 'org' }, -- Or run :TSUpdate org
--})
require('orgmode').setup({
org_agenda_files = { "~/.vimwiki/org/**/*.org" },