neovim tries to enable it by default anyway, but since i noticed this in the bufferline docs, i figured i'd make it explicit just in case
25 lines
450 B
Lua
25 lines
450 B
Lua
-- Required by bufferline
|
|
vim.opt.termguicolors = true
|
|
|
|
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',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|