2025-01-18 00:15:54 -06:00
|
|
|
return {
|
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
2025-01-16 00:19:31 -06:00
|
|
|
build = ":TSUpdate",
|
|
|
|
|
config = function()
|
|
|
|
|
local config = require("nvim-treesitter.configs")
|
2025-01-18 00:15:54 -06:00
|
|
|
|
2025-01-16 00:19:31 -06:00
|
|
|
config.setup({
|
|
|
|
|
auto_install = true,
|
|
|
|
|
indent = { enabled = true },
|
2025-01-18 23:25:36 -06:00
|
|
|
highlight = {
|
|
|
|
|
enabled = true,
|
|
|
|
|
additional_vim_regex_highlighting = true,
|
|
|
|
|
},
|
2025-01-16 00:19:31 -06:00
|
|
|
})
|
2025-01-18 23:25:36 -06:00
|
|
|
end,
|
2025-01-16 00:19:31 -06:00
|
|
|
}
|