dotfiles/nvim/lua/plugins/barbar.lua
2024-06-23 17:07:02 +02:00

18 lines
322 B
Lua

return {
'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 = 0,
preset = 'slanted',
sidebar_filetypes = {
['neo-tree'] = true
}
}
}