22 lines
396 B
Lua
22 lines
396 B
Lua
return {
|
|
{
|
|
"romgrk/barbar.nvim",
|
|
version = "^1.9.0",
|
|
dependencies = {
|
|
"lewis6991/gitsigns.nvim",
|
|
"nvim-tree/nvim-web-devicons",
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
},
|
|
init = function()
|
|
vim.g.barbar_auto_setup = false
|
|
end,
|
|
opts = {
|
|
exclude_ft = { "" },
|
|
focus_on_close = "previous",
|
|
sidebar_filetypes = {
|
|
["neo-tree"] = { event = "BufWipeout" },
|
|
},
|
|
},
|
|
},
|
|
}
|