From d50d508bc8afba7cb9078a78eba368f749b0d864 Mon Sep 17 00:00:00 2001 From: Bart Verhagen Date: Sun, 30 Jan 2022 22:37:36 +0100 Subject: [PATCH] Alternate foreground and background color for visualizing indent guides --- colors/gruvbox.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 66246fba..beb0db64 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -702,10 +702,10 @@ endif if g:indent_guides_auto_colors == 0 if g:gruvbox_invert_indent_guides == 0 call s:HL('IndentGuidesOdd', s:vim_bg, s:bg2) - call s:HL('IndentGuidesEven', s:vim_bg, s:bg1) + call s:HL('IndentGuidesEven', s:bg1, s:vim_bg) else call s:HL('IndentGuidesOdd', s:vim_bg, s:bg2, s:inverse) - call s:HL('IndentGuidesEven', s:vim_bg, s:bg3, s:inverse) + call s:HL('IndentGuidesEven', s:bg3, s:vim_bg, s:inverse) endif endif