diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 19:04:20 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 19:04:20 +0100 |
commit | 5029fbe53a7117deae5dc08fda1207abcac99d2c (patch) | |
tree | c58b40ab75f3117d40138ae2c429a56061b57696 /lua/config | |
parent | 021aa1bc9612bd3a8b42096fdac42b484bb8ef83 (diff) |
fix(treesitter): set regex hl to true
Diffstat (limited to 'lua/config')
-rw-r--r-- | lua/config/treesitter.lua | 2 |
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, |