This commit is contained in:
Nico
2024-10-31 13:49:02 +01:00
parent ad6d893cb0
commit e0b94d45e6
14 changed files with 293 additions and 119 deletions

View File

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