Added nvim-tree

This commit is contained in:
2026-08-09 10:00:28 +02:00
parent 1f8f88ae67
commit cd2df7edb2
6 changed files with 50 additions and 6 deletions
@@ -27,6 +27,11 @@ return {
vim.api.nvim_create_autocmd('FileType', {
group = ts_autoinstall_group,
callback = function(args)
-- Skip UI/special buffers (file explorers, help, terminals, quickfix, ecc.)
if vim.bo[args.buf].buftype ~= '' then
return
end
local lang = vim.treesitter.language.get_lang(args.match) or args.match
-- Try starting right away: if it works, the parser was already installed
@@ -54,4 +59,3 @@ return {
})
end,
}