dotfiles/lazyvim/lua/plugins/treesitter.lua
2025-03-14 18:57:28 -07:00

23 lines
428 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
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,
},
},
}