Files
dotfiles/.config/nvim/lua/plugins/bufferline.lua
T
cdanesi 19f1e405a9 bufferline config
tried to offset the tab list when the file tree is showing, but that
either doesn't work or I don't undertstand something
2024-11-07 15:30:29 -05:00

27 lines
666 B
Lua

return {
"akinsho/bufferline.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
version = "*",
opts = {
options = {
mode = "tabs",
separator_style = "slant",
diagnostics = "nvim_lsp",
always_show_bufferline = false,
show_tab_indicators = true,
color_icons = true,
show_buffer_icons = true,
persist_buffer_sort = true,
indicator = {
style = "underline",
},
offsets = {
filetype = "NvimTree",
text = "File Explorer",
text_align = "left",
separator = true,
},
},
},
}