mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-30 00:54:25 +02:00
chore: latest changes
This commit is contained in:
parent
f6296a8bb6
commit
bad23f408b
3 changed files with 35 additions and 3 deletions
22
lua/custom/plugins/barbar.lua
Normal file
22
lua/custom/plugins/barbar.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
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.
|
||||
icons = {
|
||||
filetype = {
|
||||
enabled = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
version = '^1.0.0', -- optional: only update when a new 1.x version is released
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue