init: initial commit

This commit is contained in:
ITQ
2026-03-08 16:23:50 +03:00
commit 02476899b4
22 changed files with 2257 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
opts = {
ensure_installed = {
"c", "cpp", "go", "python", "lua",
"bash", "json", "yaml", "toml",
"markdown", "markdown_inline",
"regex", "vim", "vimdoc",
},
auto_install = true,
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
},
config = function(_, opts)
require("nvim-treesitter").setup(opts)
end,
},
}