feat: initialize repo

This commit is contained in:
antistereov
2025-07-13 15:38:39 +02:00
commit d30985b6b4
27 changed files with 695 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
return {
"nvim-treesitter/nvim-treesitter",
branch = "master",
lazy = false,
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"c",
"lua",
"vim",
"vimdoc",
"query",
"markdown",
"markdown_inline",
"typescript",
"kotlin",
"java",
},
sync_install = false,
auto_install = true,
ignore_install = {},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
})
end,
}