summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-21 19:12:43 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-03-21 19:12:43 +0100
commit457de7a72e297f3fb0b930b809e23a8a2dec12a4 (patch)
treebcb638f51d0abd961978674e2ebce1cba2d9fcbf
parent2537a3f7fed9a3d6f0eda4ea863ea9493b91d028 (diff)
fix(treesitter): update ensure installed and hl
-rw-r--r--lua/config/treesitter.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/config/treesitter.lua b/lua/config/treesitter.lua
index 4875788..ec914fe 100644
--- a/lua/config/treesitter.lua
+++ b/lua/config/treesitter.lua
@@ -7,7 +7,7 @@ if not status_ok then
end
treesitter.setup {
- ensure_installed = { "maintained" },
+ ensure_installed = "maintained",
sync_install = false,
ignore_install = { "" }, -- List of parsers to ignore installing
autopairs = {
@@ -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 = true,
+ additional_vim_regex_highlighting = { "org" },
},
context_commentstring = {
enable = true,