Files
lazy_config/lua/plugins/treesitter.lua
2024-09-02 17:56:23 -04:00

14 lines
288 B
Lua

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