diff options
author | Chris <[email protected]> | 2021-03-11 01:40:20 -0500 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-11 01:40:20 -0500 |
commit | 46b319153060b76c19e28a5f6b84c2d8fe7e7f36 (patch) | |
tree | 0dfa27f15fdb63da309cfff742c0a861d94d0832 /lua/plugins/treesitter-config.lua | |
parent | fdb0d5bd299408e416852d01d7dedb70dfb7aeb0 (diff) |
updates
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 }, |