diff options
Diffstat (limited to 'lua/plugins/treesitter-config.lua')
| -rw-r--r-- | lua/plugins/treesitter-config.lua | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/lua/plugins/treesitter-config.lua b/lua/plugins/treesitter-config.lua index b9549a46..30b65d82 100644 --- a/lua/plugins/treesitter-config.lua +++ b/lua/plugins/treesitter-config.lua @@ -3,17 +3,18 @@ require'nvim-treesitter.configs'.setup {    highlight = {      enable = true,              -- false will disable the whole extension    }, -} - -require "nvim-treesitter.configs".setup {    playground = {      enable = true,      disable = {},      updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code      persist_queries = false -- Whether the query persists across vim sessions +  }, +  rainbow = { +    enable = false    }  } +  -- require'nvim-treesitter.configs'.setup {  --   refactor = {  --     highlight_current_scope = { enable = false },  | 
