Adding my information

This commit is contained in:
Carlos
2025-06-13 11:13:36 -04:00
parent e1a1c9f82a
commit 031b49ac77
7 changed files with 252 additions and 127 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,
-- }