1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 11:52:39 +00:00
dotfiles/.config/nvim/lua/plugins/bufferline.lua

20 lines
404 B
Lua
Raw Normal View History

2023-04-12 18:09:30 +00:00
require("bufferline").setup({
2022-10-01 11:46:18 +00:00
options = {
2023-09-16 18:05:38 +00:00
close_command = "Bdelete! %d",
right_mouse_command = "Bdelete! %d",
2022-11-05 12:30:40 +00:00
offsets = {
{ filetype = "neo-tree", text = "", padding = 1 },
{ filetype = "dapui_scopes", text = "", padding = 1 },
},
indicator = {
2023-09-16 18:05:38 +00:00
style = "underline",
},
2023-09-16 18:05:38 +00:00
hover = {
enabled = true,
delay = 200,
reveal = { "close" },
2022-10-01 11:46:18 +00:00
},
2023-09-16 18:05:38 +00:00
separator_style = "slant",
2022-10-01 11:46:18 +00:00
},
})