fixed late zig compile call

This commit is contained in:
Daveanand Mannie
2024-09-02 20:20:03 -04:00
parent 7cfc46e139
commit 20c983b8c1

View File

@@ -1,3 +1,5 @@
require("nvim-treesitter.install").compilers = { "zig" }
require("nvim-treesitter.install").prefer_git = false
return {
{
"nvim-treesitter/nvim-treesitter",
@@ -7,7 +9,21 @@ return {
opts = {
highlight = { enable = true },
indent = { enable = true },
ensure_installed = { "ninja", "rst"}
ensure_installed = {
-- from extras -> python
"python",
"ninja",
"rst",
"lua",
-- from extras -> go
"go",
"gomod",
"gowork",
"gosum",
"toml",
"json",
"html",
},
},
},
}