feat(nvim): add treesitter bindings for node selection
Using v (enter visual mode) makes more sense than the defaults that comes with LazyVim
This commit is contained in:
parent
14641d063f
commit
526583d640
1 changed files with 12 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
incremental_selection = {
|
||||
enable = true,
|
||||
keymaps = {
|
||||
node_incremental = "v",
|
||||
node_decremental = "V",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Reference in a new issue