summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-21 19:04:20 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-21 19:04:20 +0100
commit5029fbe53a7117deae5dc08fda1207abcac99d2c (patch)
treec58b40ab75f3117d40138ae2c429a56061b57696
parent021aa1bc9612bd3a8b42096fdac42b484bb8ef83 (diff)
fix(treesitter): set regex hl to true
-rw-r--r--lua/config/treesitter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/config/treesitter.lua b/lua/config/treesitter.lua
index 7a4bf3f..4875788 100644
--- a/lua/config/treesitter.lua
+++ b/lua/config/treesitter.lua
@@ -16,7 +16,7 @@ treesitter.setup {
highlight = {
enable = true, -- false will disable the whole extension
disable = { "org" }, -- list of language that will be disabled
- additional_vim_regex_highlighting = { "org" }, -- Required since TS highlighter doesn't support all syntax features (conceal)
+ additional_vim_regex_highlighting = true,
},
context_commentstring = {
enable = true,