22 lines
426 B
Lua
22 lines
426 B
Lua
return {
|
|
"akinsho/bufferline.nvim",
|
|
version = "*",
|
|
dependencies = "nvim-tree/nvim-web-devicons",
|
|
event = "VeryLazy",
|
|
config = function(_, opts)
|
|
require("bufferline").setup({
|
|
options = {
|
|
close_command = "bdelete! %d",
|
|
right_mouse_command = "bdelete! %d",
|
|
offsets = {
|
|
{
|
|
filetype = "snacks_layout_box",
|
|
text = "Snacks File Picker",
|
|
separator = true,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|