first commit
This commit is contained in:
24
nvim/lua/kickstart/plugins/barbar.lua
Normal file
24
nvim/lua/kickstart/plugins/barbar.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
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 = false
|
||||
end,
|
||||
opts = {
|
||||
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
|
||||
-- animation = true,
|
||||
-- insert_at_start = true,
|
||||
-- …etc.
|
||||
autohide = true,
|
||||
no_name_title = nil,
|
||||
hide = { extensions = false, inactive = false },
|
||||
animation = true,
|
||||
tabpages = true,
|
||||
clickable = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user