18 lines
506 B
Lua
18 lines
506 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter-textobjects" },
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
require('nvim-treesitter.configs').setup {
|
|
ensure_installed = "all",
|
|
sync_install = true,
|
|
ignore_install = {},
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
}
|
|
end
|
|
}
|