From 532c9c0f1706c04a343cafcd1f9e7005e8fee743 Mon Sep 17 00:00:00 2001 From: Warwick Date: Tue, 25 Mar 2025 11:06:41 +0000 Subject: [PATCH] org no longer seems to be in tree-sitter --- lua/core/plugin_config/org.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lua/core/plugin_config/org.lua b/lua/core/plugin_config/org.lua index 9cb295a..0932765 100644 --- a/lua/core/plugin_config/org.lua +++ b/lua/core/plugin_config/org.lua @@ -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" },