mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
20 lines
582 B
Lua
20 lines
582 B
Lua
local status_ok, bufferline = pcall(require, "bufferline")
|
|
if status_ok then
|
|
bufferline.setup(astronvim.user_plugin_opts("plugins.bufferline", {
|
|
options = {
|
|
offsets = {
|
|
{ filetype = "NvimTree", text = "", padding = 1 },
|
|
{ filetype = "neo-tree", text = "", padding = 1 },
|
|
{ filetype = "Outline", text = "", padding = 1 },
|
|
},
|
|
buffer_close_icon = "",
|
|
modified_icon = "",
|
|
close_icon = "",
|
|
max_name_length = 14,
|
|
max_prefix_length = 13,
|
|
tab_size = 20,
|
|
separator_style = "thin",
|
|
},
|
|
}))
|
|
end
|