Moved treesitter config: init -> spec file

This commit is contained in:
Daveanand Mannie
2024-08-25 12:29:35 -04:00
parent 82c5623910
commit 4cb50cdbe9
3 changed files with 15 additions and 4 deletions

View File

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