From 10ddd491c15325270f0e6f4df48a3a8e30a3c6a7 Mon Sep 17 00:00:00 2001 From: Akianonymus Date: Tue, 13 Jul 2021 16:06:31 +0530 Subject: [PATCH] highlights.lua: fix comments not visible in visual selection mode --- lua/highlights.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/highlights.lua b/lua/highlights.lua index 4fbd289..511393c 100644 --- a/lua/highlights.lua +++ b/lua/highlights.lua @@ -13,6 +13,7 @@ local one_bg3 = colors.one_bg3 local light_grey = colors.light_grey local grey = colors.grey local grey_fg = colors.grey_fg +local grey_fg2 = colors.grey_fg2 local red = colors.red local line = colors.line local green = colors.green @@ -41,7 +42,7 @@ fg("IndentBlanklineChar", line) -- misc -- fg("LineNr", grey) -fg("Comment", grey) +fg("Comment", grey_fg2) fg("NvimInternalError", red) fg("VertSplit", line) fg("EndOfBuffer", black)