mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 13:57:28 -07:00
22 lines
398 B
Lua
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,
|
|
},
|
|
},
|
|
}
|