Adding Changes

This commit is contained in:
Carlos
2025-02-02 12:26:38 -05:00
parent dbd430eac2
commit 93eb0ef78a
17 changed files with 536 additions and 22 deletions

View File

@@ -0,0 +1,12 @@
return {
"ap/vim-buftabline",
event = "VeryLazy", -- Loads when Neovim starts up
config = function()
-- Enable the buffer tabline
vim.g.buftabline_numbers = 2 -- Shows buffer numbers
vim.g.buftabline_separators = 1 -- Shows separators between tabs
vim.g.buftabline_indicators = 1 -- Show indicators for modified buffers
vim.g.buftabline_show = 1 -- 0: never, 1: always, 2: auto-hide when only one buffer
vim.g.buftabline_modified_indicator = "[+]" -- Custom indicator for modified buffers
end,
}