Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
return {
'nvim-treesitter/nvim-treesitter',
lazy = false,
branch = 'master',
build = ':TSUpdate',
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
highlight = { enable = true },
indent = { enable = true },
autotag = { enable = true },
ensure_installed = {
"lua", "c", "rust", "python", "java"
},
})
end,
}