feat: update nvim config to match 0.12 version

This commit is contained in:
2026-04-13 23:53:34 +02:00
parent 9f62daedcd
commit e5300b3686
18 changed files with 176 additions and 317 deletions

View File

@@ -0,0 +1,25 @@
return {
"romus204/tree-sitter-manager.nvim",
dependencies = {}, -- tree-sitter CLI must be installed system-wide
opts = {
ensure_installed = {
"bash",
"c",
"cpp",
"css",
"go",
"html",
"javascript",
"json",
"lua",
"python",
"rust",
"typescript",
"yaml"
}, -- list of parsers to install at the start of a neovim session
-- Default Options
-- ensure_installed = {}, -- list of parsers to install at the start of a neovim session
-- border = nil, -- border style for the window (e.g. "rounded", "single"), if nil, use the default border style defined by 'vim.o.winborder'. See :h 'winborder' for more info.
-- auto_install = false, -- if enabled, install missing parsers when editing a new file
},
}