mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 06:24:42 -05:00
17 lines
366 B
Lua
17 lines
366 B
Lua
return {
|
|
"romgrk/barbar.nvim",
|
|
dependencies = {
|
|
"nvim-tree/nvim-web-devicons"
|
|
},
|
|
init = function() vim.g.barbar_auto_setup = false end,
|
|
opts = {
|
|
insert_at_start = true,
|
|
animation = false,
|
|
auto_hide = false,
|
|
sidebar_filetypes = {
|
|
NvimTree = true,
|
|
NeoTree = false,
|
|
},
|
|
}
|
|
}
|