dotfiles/nvim/lua/kickstart/plugins/bufferline.lua
2024-10-04 00:37:53 +03:00

25 lines
480 B
Lua

-- bufferline
return {
'akinsho/bufferline.nvim',
version = '*',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
opts = {
options = {
mode = "buffers",
themable = true,
color_icons = true,
offsets = {
{
filetype = "neo-tree",
text = "File Explorer",
text_align = "left",
separator = true,
}
},
},
},
}