dotfiles/lua/plugins/bufferline.lua

25 lines
450 B
Lua
Raw Normal View History

-- Required by bufferline
vim.opt.termguicolors = true
2024-09-01 19:50:25 -04:00
return {
{
'akinsho/bufferline.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
opts = {
options = {
always_show_bufferline = true,
offsets = {
{
filetype = 'neo-tree',
text = 'Neo-tree',
highlight = 'Directory',
text_align = 'left',
},
},
},
},
},
}