Skip to content

Commit

Permalink
Fix stupid missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed Sep 18, 2019
1 parent 0e3fce7 commit 4790dbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions colors/space_vim_theme.vim
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ if &background ==# 'dark'
hi GitGutterDelete ctermfg=196 ctermbg=235 guifg=#f2241f guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold
hi GitGutterChangeDelete ctermfg=168 ctermbg=235 guifg=#ce537a guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold
if get(g:, "indent_guides_auto_colors", 0)
if get(g: "space_vim_invert_indent_guides", 0)
if get(g:, "space_vim_invert_indent_guides", 0)
hi IndentGuidesOdd ctermfg=235 ctermbg=232 guifg=#292b2e guibg=#100a14 guisp=NONE cterm=NONE,reverse gui=NONE,reverse
hi IndentGuidesEven ctermfg=235 ctermbg=234 guifg=#292b2e guibg=#212026 guisp=NONE cterm=NONE,reverse gui=NONE,reverse
else
Expand Down Expand Up @@ -806,7 +806,7 @@ if get(g:, "space_vim_plugin_hi_groups", 1)
hi GitGutterDelete ctermfg=196 ctermbg=231 guifg=#f2241f guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold
hi GitGutterChangeDelete ctermfg=161 ctermbg=231 guifg=#ba2f59 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold
if get(g:, "indent_guides_auto_colors", 0)
if get(g: "space_vim_invert_indent_guides", 0)
if get(g:, "space_vim_invert_indent_guides", 0)
hi IndentGuidesOdd ctermfg=231 ctermbg=254 guifg=#fbf8ef guibg=#e3dedd guisp=NONE cterm=NONE,reverse gui=NONE,reverse
hi IndentGuidesEven ctermfg=231 ctermbg=255 guifg=#fbf8ef guibg=#efeae9 guisp=NONE cterm=NONE,reverse gui=NONE,reverse
else
Expand Down
2 changes: 1 addition & 1 deletion templates/_plugins.colortemplate
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ GitGutterChangeDelete red1 bg0 bold
# Indent Guides {{{
verbatim
if get(g:, "indent_guides_auto_colors", 0)
if get(g: "@optionprefix_invert_indent_guides", 0)
if get(g:, "@optionprefix_invert_indent_guides", 0)
endverbatim
IndentGuidesOdd bg0 bg2 reverse
IndentGuidesEven bg0 bg1 reverse
Expand Down

0 comments on commit 4790dbb

Please sign in to comment.