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