initial commit

This commit is contained in:
2026-01-20 15:07:23 +02:00
commit 09c8a00eb1
10 changed files with 401 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
return {
-- Better highlighting and parsing
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.config").setup({
highlight = { enabled = true },
additional_vim_regex_highlighting = false,
indent = { enabled = true },
ensure_installed = {
"go",
"gomod",
"gosum",
"gowork",
"typescript",
"tsx",
"javascript",
"json",
"lua",
"vimdoc",
"markdown",
"yaml",
"bash",
},
})
end,
},
}