Add romgrk/barbar.nvim plugin

This commit is contained in:
Markus Ullmann 2023-08-02 00:49:24 +02:00
parent f5e6162f9a
commit c87803a7b6
2 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,16 @@
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
},
}