nvim1/lua/plugins/bufferline.lua

21 lines
569 B
Lua

return {
"akinsho/bufferline.nvim",
version = "*",
dependencies = "nvim-tree/nvim-web-devicons",
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,
}