added tab support

This commit is contained in:
Aadi Rave 2025-03-16 13:30:48 -04:00
parent ea528c2dd2
commit 351df69bde
2 changed files with 52 additions and 0 deletions

View file

@ -249,4 +249,29 @@ return {
-- catppuccin if i want
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
-- display whitespace in visual mode
{
'mcauley-penney/visual-whitespace.nvim',
config = true,
},
-- tabs
{
'romgrk/barbar.nvim',
dependencies = {
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
},
init = function()
vim.g.barbar_auto_setup = false
end,
opts = {
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
-- animation = true,
-- insert_at_start = true,
-- …etc.
},
version = '^1.0.0', -- optional: only update when a new 1.x version is released
},
}