add romgrk/barbar.nvim for filename tabs

This commit is contained in:
DanRoscigno 2023-06-09 12:44:30 -04:00
parent 93995bebbb
commit d279c5f9dd
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
return {
{
'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
}
}