From b029d2bc79163a1801a70dd4d83b2ae6c1ebec56 Mon Sep 17 00:00:00 2001 From: barrientosvctor Date: Sat, 7 Sep 2024 18:05:59 -0500 Subject: [PATCH] fix(highlight): Whitespace color The previous colors that Whitespace highlight group had was so obscure. Making the view of whitespaces difficulty. Before: https://i.imgur.com/A79qDwE.png After: https://i.imgur.com/0CS57J0.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 2023e49..5790eb4 100644 --- a/lua/abyss/theme.lua +++ b/lua/abyss/theme.lua @@ -145,7 +145,7 @@ function M.get(user_opts) Visual = { fg = colors.none, bg = colors.darkred }, VisualNOS = { link = "Visual" }, - Whitespace = { fg = colors.bg, bg = colors.none }, + Whitespace = { fg = colors.midblue }, WildMenu = { link = "PmenuSel" },