dots/Configs/nvim/.config/nvim/lua/aleidk/plugins/treesitter.lua
2025-07-10 16:16:31 -04:00

20 lines
380 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
lazy = false,
branch = "master",
dependencies = {
{
"JoosepAlviste/nvim-ts-context-commentstring",
opts = {
enable_autocmd = false,
},
},
{ "nvim-treesitter/nvim-treesitter-context" },
},
build = ":TSUpdate",
opts = {
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
},
}