dotfiles/lazyvim/lua/plugins/treesitter.lua
2025-07-08 16:47:45 -07:00

22 lines
398 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
opts = {
ignore_install = {},
highlight = {
enable = true,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "gnn",
node_incremental = "grn",
scope_incremental = "grc",
node_decremental = "grm",
},
},
indent = {
enable = true,
},
},
}