Files
nvim-config/lua/plugins/treesitter.lua
T

17 lines
346 B
Lua
Raw Normal View History

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 },
highlight = {
enabled = true,
additional_vim_regex_highlighting = true,
},
2025-01-16 00:19:31 -06:00
})
end,
2025-01-16 00:19:31 -06:00
}