14 lines
288 B
Lua
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"}
|
|
},
|
|
},
|
|
}
|