diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 19:12:43 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-03-21 19:12:43 +0100 |
commit | 457de7a72e297f3fb0b930b809e23a8a2dec12a4 (patch) | |
tree | bcb638f51d0abd961978674e2ebce1cba2d9fcbf /lua | |
parent | 2537a3f7fed9a3d6f0eda4ea863ea9493b91d028 (diff) |
fix(treesitter): update ensure installed and hl
Diffstat (limited to 'lua')
-rw-r--r-- | lua/config/treesitter.lua | 4 |
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, |