feat(nvim): some devops stuff, additions and optimizations for nvim

This commit is contained in:
ITQ
2026-05-15 20:48:46 +03:00
parent b4e15131d1
commit 1273a6cd74
16 changed files with 334 additions and 142 deletions
+20 -20
View File
@@ -1,23 +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 },
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
opts = {
ensure_installed = {
"c", "cpp", "go", "rust", "python", "lua", "asm", "nasm",
"terraform", "hcl", "dockerfile",
"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,
},
config = function(_, opts)
require("nvim-treesitter").setup(opts)
end,
},
}