From 893b06defbe47fd6f81e47c595e408948e9b77fe Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sun, 2 May 2021 13:30:18 +0530 Subject: [PATCH] nvim: colors: yolokai: Update color highlight for LineNr & SignColumn --- 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 0578701..c37dffc 100644 --- a/nvim/.config/nvim/colors/yolokai.vim +++ b/nvim/.config/nvim/colors/yolokai.vim @@ -133,7 +133,7 @@ local highlight_groups = { CursorLineNr = {bg=lightblack, fg=orange,style=NONE }, debugBreakpoint = 'ErrorMsg' , debugPC = 'ColorColumn', - LineNr = {bg=lightblack, fg=grey, style=NONE }, + LineNr = {bg=black, fg=grey, style=NONE }, QuickFixLine = {bg=darkgrey, fg=NONE, style=NONE }, Visual = {bg=NONE, fg=NONE, style='inverse'}, VisualNOS = {bg=darkgrey, fg=NONE, style=NONE }, @@ -168,7 +168,7 @@ local highlight_groups = { --[[ 4.2.9. Conditional Column Highlighting]] ColorColumn = {bg=lightblack, fg=NONE, style=NONE }, - SignColumn = {bg=lightblack, fg=NONE, style=NONE }, + SignColumn = {bg=black, fg=NONE, style=NONE }, --[[ 4.2.10. Messages]] ErrorMsg = {bg=black, fg=red, style=NONE },