first commit

This commit is contained in:
bacalhau 2025-07-02 15:42:50 +01:00
commit a89179ce06
10 changed files with 215 additions and 0 deletions

View file

@ -0,0 +1,14 @@
return{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "html", "go", "java", "css" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}