16 lines
402 B
Lua
16 lines
402 B
Lua
|
return {
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
dependencies = { "nvim-treesitter/nvim-treesitter-textobjects" },
|
||
|
build = ":TSUpdate",
|
||
|
config = {
|
||
|
ensure_installed = "all",
|
||
|
sync_install = true,
|
||
|
ignore_install = {},
|
||
|
auto_install = true,
|
||
|
highlight = {
|
||
|
enable = true,
|
||
|
additional_vim_regex_highlighting = false,
|
||
|
},
|
||
|
}
|
||
|
}
|