dotfiles/nvim/lua/plugins/barbar.lua

18 lines
301 B
Lua
Raw Permalink Normal View History

2024-06-23 17:07:02 +02:00
return {
2024-08-18 17:49:32 +02:00
"romgrk/barbar.nvim",
dependencies = {
"lewis6991/gitsigns.nvim",
"nvim-tree/nvim-web-devicons",
},
init = function()
vim.g.barbar_auto_setup = false
end,
opts = {
animation = true,
auto_hide = 1,
sidebar_filetypes = {
["neo-tree"] = { event = "BufWipeout" },
},
},
2024-06-23 17:07:02 +02:00
}