feat(init): first init

This commit is contained in:
darwincereska
2025-10-29 15:58:28 -04:00
commit 5a5c81eb60
34 changed files with 713 additions and 0 deletions

16
lua/plugins/tabs.lua Normal file
View File

@@ -0,0 +1,16 @@
return {
"romgrk/barbar.nvim",
dependencies = {
"nvim-tree/nvim-web-devicons"
},
init = function() vim.g.barbar_auto_setup = false end,
opts = {
insert_at_start = true,
animation = false,
auto_hide = false,
sidebar_filetypes = {
NvimTree = true,
NeoTree = false,
},
}
}