14 lines
317 B
Lua
14 lines
317 B
Lua
-- https://github.com/romgrk/barbar.nvim
|
|
return {
|
|
'romgrk/barbar.nvim',
|
|
enabled = false,
|
|
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 = {},
|
|
}
|