dotfiles/nvim/lua/plugins/bufferline.lua
2026-01-18 23:17:04 +01:00

27 lines
600 B
Lua

return {
"akinsho/bufferline.nvim",
version = "*",
dependencies = {
"nvim-tree/nvim-web-devicons",
},
event = "VeryLazy",
opts = {
options = {
mode = "buffers", -- show buffers, not tabs
numbers = "none",
diagnostics = "nvim_lsp",
separator_style = "slant",
show_buffer_close_icons = true,
show_close_icon = false,
always_show_bufferline = true,
offsets = {
{
filetype = "NvimTree",
text = "File Explorer",
highlight = "Directory",
separator = true,
},
},
},
},
}