13 lines
270 B
Lua
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}
|
|
}
|
|
}
|
|
}
|