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