diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-18 22:19:57 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-18 22:19:57 +0100 |
commit | e6fed655e18343e6e399e8198346466effe8c3a8 (patch) | |
tree | cdae8ac05aa014a4970f3bdf656cb297527780e5 /.config/nvim/lua/_treesitter/init.lua | |
parent | 55517dded759e1dd4381792985a6d7fb88df8a1e (diff) |
Fix nvim lua scripts
Diffstat (limited to '.config/nvim/lua/_treesitter/init.lua')
-rw-r--r-- | .config/nvim/lua/_treesitter/init.lua | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/.config/nvim/lua/_treesitter/init.lua b/.config/nvim/lua/_treesitter/init.lua index d202a9f..2b61051 100644 --- a/.config/nvim/lua/_treesitter/init.lua +++ b/.config/nvim/lua/_treesitter/init.lua @@ -3,13 +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 + }, + refactor = { + highlight_definitions = { + enable = false + } + } } |