chore: initial commit

This commit is contained in:
Stevan Freeborn
2025-01-16 00:19:31 -06:00
commit 40b9337594
9 changed files with 98 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = true,
indent = { enabled = true },
highlight = { enabled = true }
})
end
}