feat: improve barbar separator (#350)

This commit is contained in:
Otávio Schwanck dos Santos 2023-04-16 22:20:29 +01:00 committed by GitHub
parent 6163a69e11
commit 169b76ff87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -451,7 +451,7 @@ function M.setup()
BufferCurrentWARN = { bg = c.bg, fg = c.warning },
BufferCurrentIndex = { bg = c.bg, fg = c.info },
BufferCurrentMod = { bg = c.bg, fg = c.warning },
BufferCurrentSign = { bg = c.bg, fg = c.info },
BufferCurrentSign = { bg = c.bg, fg = c.bg },
BufferCurrentTarget = { bg = c.bg, fg = c.red },
BufferAlternate = { bg = c.fg_gutter, fg = c.fg },
BufferAlternateERROR = { bg = c.fg_gutter, fg = c.error },
@ -481,7 +481,7 @@ function M.setup()
BufferInactiveWARN = { bg = c.bg_highlight, fg = util.darken(c.warning, 0.8) },
BufferInactiveIndex = { bg = c.bg_highlight, fg = c.dark5 },
BufferInactiveMod = { bg = c.bg_highlight, fg = util.darken(c.warning, 0.8) },
BufferInactiveSign = { bg = c.bg_highlight, fg = c.border_highlight },
BufferInactiveSign = { bg = c.bg_highlight, fg = c.bg },
BufferInactiveTarget = { bg = c.bg_highlight, fg = c.red },
BufferOffset = { bg = c.bg_statusline, fg = c.dark5 },
BufferTabpageFill = { bg = util.lighten(c.bg, 0.93), fg = c.dark5 },