mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 19:25:01 +08:00
13 lines
327 B
Lua
13 lines
327 B
Lua
return {
|
|
"romgrk/barbar.nvim",
|
|
dependencies = {
|
|
"lewis6991/gitsigns.nvim", -- OPTIONAL: for git status
|
|
"nvim-tree/nvim-web-devicons", -- OPTIONAL: for file icons
|
|
},
|
|
init = function()
|
|
vim.g.barbar_auto_setup = true
|
|
end,
|
|
opts = {
|
|
},
|
|
version = "^1.0.0", -- optional: only update when a new 1.x version is released
|
|
}
|