From 92700c007afd94304f1198b069df7d9367d6293e Mon Sep 17 00:00:00 2001 From: Isaac Hess Date: Wed, 24 Jun 2015 06:29:04 -0600 Subject: [PATCH] IndentLine defaults only applied if not supplied by user --- colors/gruvbox.vim | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 602edbec..7220ded9 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -607,8 +607,12 @@ endif " }}} " IndentLine: {{{ -let g:indentLine_color_term = s:gb.dark2[1] -let g:indentLine_color_gui = '#' . s:gb.dark2[0] +if !exists('g:indentLine_color_term') + let g:indentLine_color_term = s:gb.dark2[1] +endif +if !exists('g:indentLine_color_gui') + let g:indentLine_color_gui = '#' . s:gb.dark2[0] +endif " }}} " Rainbow Parentheses: {{{