This commit is contained in:
Hunter 2025-05-08 06:57:37 -04:00
parent f5daf0ad68
commit 0e500b7d8f
Signed by: hst
GPG key ID: 951D8B651E7DE6BE
29 changed files with 687 additions and 694 deletions

View file

@ -0,0 +1,32 @@
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = {
"lua",
"vim",
"vimdoc",
"markdown",
"json",
"javascript",
"html",
"c",
"cpp",
"hlsl",
"jsdoc",
"rust",
"python",
"bash",
"zig",
},
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
},
}