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

18 lines
364 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 = {
2023-10-04 17:49:06 +00:00
enabled = false,
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
},
})