nvim: Use more prominent white highlight for Comment

We seem to be making a lot of mistakes when it comes to handling
docs/comments in merge requests. Use a more prominent white colour
for the comment highlight group.
This commit is contained in:
Sanchayan Maity 2022-11-16 10:34:53 +05:30
parent c000edde8c
commit ef4c3b7d30

View file

@ -49,7 +49,7 @@ local highlight_groups = {
--[[ 4.1. Text Analysis ]]
EndOfBuffer = 'NonText' ,
Whitespace = 'NonText' ,
Comment = { fg=warmgrey , style='italic' },
Comment = { fg=white2 , style='italic' },
NonText = { fg=lightgrey },
--[[ 4.1.1. Literals]]