diff options
| author | Chris <[email protected]> | 2020-10-30 01:00:09 -0400 | 
|---|---|---|
| committer | Chris <[email protected]> | 2020-10-30 01:00:09 -0400 | 
| commit | 77eb63b9cd332b2ce2dea9ce0b055e7f5671dc62 (patch) | |
| tree | 90a2f76381c77d48995baf2b92ed9130b8ea70c8 /lua | |
| parent | 54ba6c4efb4315be380d92d2bb333a09daade5d0 (diff) | |
updates
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/treesitter.lua | 32 | 
1 files changed, 15 insertions, 17 deletions
| diff --git a/lua/treesitter.lua b/lua/treesitter.lua index 4506f9c3..b9549a46 100644 --- a/lua/treesitter.lua +++ b/lua/treesitter.lua @@ -2,7 +2,6 @@ require'nvim-treesitter.configs'.setup {    ensure_installed = "all", -- one of "all", "maintained" (parsers with maintainers), or a list of languages    highlight = {      enable = true,              -- false will disable the whole extension -    disable = { "c", "rust" },  -- list of language that will be disabled    },  } @@ -15,21 +14,20 @@ require "nvim-treesitter.configs".setup {    }  } -require'nvim-treesitter.configs'.setup { -  refactor = { -    highlight_current_scope = { enable = false }, -  }, -} - -require'nvim-treesitter.configs'.setup { -  refactor = { -    smart_rename = { -      enable = true, -      keymaps = { -        smart_rename = "grr", -      }, -    }, -  }, -} +-- require'nvim-treesitter.configs'.setup { +--   refactor = { +--     highlight_current_scope = { enable = false }, +--   }, +-- } +-- require'nvim-treesitter.configs'.setup { +--   refactor = { +--     smart_rename = { +--       enable = true, +--       keymaps = { +--         smart_rename = "grr", +--       }, +--     }, +--   }, +-- } | 
