Initial commit

This commit is contained in:
2025-06-05 00:03:24 -04:00
commit 9ac5bf62c8
29 changed files with 907 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
local plugin = {
"nvim-treesitter/nvim-treesitter",
build = function()
require("nvim-treesitter.install").update({ with_sync = true })()
end,
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
}
return { plugin }