From ef4c3b7d307c9d576e6b523b87f97f6a50a8bf39 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Wed, 16 Nov 2022 10:34:53 +0530 Subject: [PATCH] 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. --- nvim/.config/nvim/colors/yolokai.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/.config/nvim/colors/yolokai.vim b/nvim/.config/nvim/colors/yolokai.vim index 5734133..d070ff9 100644 --- a/nvim/.config/nvim/colors/yolokai.vim +++ b/nvim/.config/nvim/colors/yolokai.vim @@ -49,8 +49,8 @@ local highlight_groups = { --[[ 4.1. Text Analysis ]] EndOfBuffer = 'NonText' , Whitespace = 'NonText' , - Comment = { fg=warmgrey , style='italic' }, - NonText = { fg=lightgrey }, + Comment = { fg=white2 , style='italic' }, + NonText = { fg=lightgrey }, --[[ 4.1.1. Literals]] Constant = { fg=purple },