IndentLine defaults only applied if not supplied by user

This commit is contained in:
Isaac Hess
2015-06-24 06:29:04 -06:00
parent 705e68d90d
commit 92700c007a

View File

@@ -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: {{{