22 lines
431 B
Lua
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,
|
|
},
|
|
},
|
|
},
|
|
})
|