Files
lazy_config/lua/plugins/treesitter.lua
2024-08-25 12:29:35 -04:00

13 lines
270 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
build = function()
require('nvim-treesitter.install').compilers = {"zig"}
end,
opts = {
highlight = {enable = true},
indent = {enable = true}
}
}
}