fix(nvim): make bufferline extension match statusline bg

This commit is contained in:
Price Hiller 2023-09-17 02:17:26 -05:00
parent 7d9db1d1a5
commit e3f925f625
No known key found for this signature in database

View File

@ -453,9 +453,9 @@ return {
-- and here we go
local BufferLine = utils.make_buflist(
StatusLineBufferBlock,
{ provider = "", hl = { fg = colors.katanaGray } }, -- left truncation, optional (defaults to "<")
{ provider = "", hl = { fg = colors.katanaGray } } -- right trunctation, also optional (defaults to ...... yep, ">")
-- by the way, open a lot of buffers and try clicking them ;)
-- left truncation, optional (defaults to "<")
{ provider = "", hl = { fg = colors.katanaGray, bg = utils.get_highlight("StatusLine").bg } },
{ provider = "", hl = { fg = colors.katanaGray, bg = utils.get_highlight("StatusLine").bg } }
)
local Tabpage = {