From 6e347c901d4aa4405c6de8c5c181f471edbaea06 Mon Sep 17 00:00:00 2001 From: windowsrefund Date: Sat, 27 Apr 2024 09:34:55 -0400 Subject: [PATCH] feat(highlights): add `WinBar*` groups (#26) * add highlights for winbar * cap --------- Co-authored-by: windowsrefund --- lua/mellifluous/highlights/general.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/mellifluous/highlights/general.lua b/lua/mellifluous/highlights/general.lua index e7d3952..b8086de 100644 --- a/lua/mellifluous/highlights/general.lua +++ b/lua/mellifluous/highlights/general.lua @@ -110,6 +110,8 @@ function M.set(hl, colors) hl.set('Whitespace', { fg = colors.fg5 }) -- 'nbsp', 'space', 'tab' and 'trail' in 'listchars' hl.set('WinSeparator', { link = 'VertSplit' }) -- Separator between window splits. Inherts from |hl-VertSplit| by default, which it will replace eventually. hl.set('WildMenu', { link = 'PmenuSel' }) -- Current match in 'wildmenu' completion + hl.set('WinBar', { link = 'TabLine' }) -- Winbar line, current + hl.set('WinBarNC', { link = 'TabLine' }) -- Winbar line, not current -- Common vim syntax groups used for all kinds of code and markup. -- Commented-out groups should chain up to their preferred (*) group