dotfiles/dot_config/nvim/after/plugin/bufferline.lua
2026-02-06 09:15:12 +01:00

22 lines
431 B
Lua

-- English comments only.
local ok, bufferline = pcall(require, "bufferline")
if not ok then return end
bufferline.setup({
options = {
diagnostics = "nvim_lsp",
show_buffer_close_icons = true,
show_close_icon = false,
separator_style = "slant",
offsets = {
{
filetype = "NvimTree",
text = "File Explorer",
text_align = "left",
separator = true,
},
},
},
})