dotfiles/.config/nvim/lua/plugins/extras/editor/treesitter-extended.lua
Sergio Laín 526583d640
feat(nvim): add treesitter bindings for node selection
Using v (enter visual mode) makes more sense than the defaults that
comes with LazyVim
2025-08-27 13:21:13 +02:00

12 lines
213 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
opts = {
incremental_selection = {
enable = true,
keymaps = {
node_incremental = "v",
node_decremental = "V",
},
},
},
}