mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-13 01:21:13 +00:00
20 lines
404 B
Lua
20 lines
404 B
Lua
require("bufferline").setup({
|
|
options = {
|
|
close_command = "Bdelete! %d",
|
|
right_mouse_command = "Bdelete! %d",
|
|
offsets = {
|
|
{ filetype = "neo-tree", text = "", padding = 1 },
|
|
{ filetype = "dapui_scopes", text = "", padding = 1 },
|
|
},
|
|
indicator = {
|
|
style = "underline",
|
|
},
|
|
hover = {
|
|
enabled = true,
|
|
delay = 200,
|
|
reveal = { "close" },
|
|
},
|
|
separator_style = "slant",
|
|
},
|
|
})
|