From 9886d13d4e63e8b753dd5ef0d6c18944edade49b Mon Sep 17 00:00:00 2001 From: barrientosvctor Date: Thu, 15 Aug 2024 20:24:22 -0500 Subject: [PATCH 1/2] fix(highlight): wrong colors of WildMenu Before: https://i.imgur.com/UKCZz0C.png After: https://i.imgur.com/HYItrQQ.png --- lua/abyss/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/abyss/theme.lua b/lua/abyss/theme.lua index b4aa99b..de474fd 100644 --- a/lua/abyss/theme.lua +++ b/lua/abyss/theme.lua @@ -145,7 +145,7 @@ function M.get(user_opts) Whitespace = { fg = colors.bg, bg = colors.none }, - WildMenu = { fg = colors.bg, bg = colors.fg }, + WildMenu = { link = "PmenuSel" }, WinBar = { fg = colors.white, bg = colors.bg }, WinBarNC = { fg = colors.fg, bg = colors.bg }, From ae684adf3457e07ab9253feb983f8b3f8d9fdb03 Mon Sep 17 00:00:00 2001 From: barrientosvctor Date: Fri, 23 Aug 2024 22:07:57 -0500 Subject: [PATCH 2/2] feat(highlight): add terminal StatusLine --- lua/abyss/theme.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/abyss/theme.lua b/lua/abyss/theme.lua index de474fd..2023e49 100644 --- a/lua/abyss/theme.lua +++ b/lua/abyss/theme.lua @@ -132,7 +132,9 @@ function M.get(user_opts) SpellLocal = { fg = colors.orange, underline = true }, StatusLine = { fg = colors.none, bg = colors.bg_alt }, + StatusLineTerm = { link = "StatusLine" }, StatusLineNC = { fg = colors.none, bg = colors.black }, + StatusLineTermNC = { link = "StatusLineNC" }, TabLine = { fg = colors.lightgrey, bg = colors.bg }, TabLineFill = { fg = colors.none, bg = colors.bg },