File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,7 @@ require'nvim-treesitter.configs'.setup {
79
79
-- If TS highlights are not enabled at all, or disabled via `disable` prop, highlighting will fallback to default Vim syntax highlighting
80
80
highlight = {
81
81
enable = true ,
82
- disable = {' org' }, -- Remove this to use TS highlighter for some of the highlights (Experimental)
83
- additional_vim_regex_highlighting = {' org' }, -- Required since TS highlighter doesn't support all syntax features (conceal)
82
+ additional_vim_regex_highlighting = {' org' }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
84
83
},
85
84
ensure_installed = {' org' }, -- Or run :TSUpdate org
86
85
}
@@ -104,8 +103,7 @@ require'nvim-treesitter.configs'.setup {
104
103
-- If TS highlights are not enabled at all, or disabled via `disable` prop, highlighting will fallback to default Vim syntax highlighting
105
104
highlight = {
106
105
enable = true,
107
- disable = {'org'}, -- Remove this to use TS highlighter for some of the highlights (Experimental)
108
- additional_vim_regex_highlighting = {'org'}, -- Required since TS highlighter doesn't support all syntax features (conceal)
106
+ additional_vim_regex_highlighting = {'org'}, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
109
107
},
110
108
ensure_installed = {'org'}, -- Or run :TSUpdate org
111
109
}
You can’t perform that action at this time.
0 commit comments