Even out the regular and the 256 colors versions

Some stuff was missing from the 256 colors version:

- the improved diffing from #13
- the directory highlighting
This commit is contained in:
Andrea Leopardi 2014-10-12 19:19:19 +02:00
parent 9aa11a0a80
commit 4b07e83e7c
2 changed files with 9 additions and 6 deletions

View file

@ -209,7 +209,7 @@ call s:Col('htmlItalic', 'magenta')
call s:Col('htmlBold', 'cyan', '') call s:Col('htmlBold', 'cyan', '')
" Plugin " ===================================================================== " Plugin =======================================================================
" GitGutter " GitGutter
call s:Col('GitGutterAdd', 'green', s:linenr_background) call s:Col('GitGutterAdd', 'green', s:linenr_background)

View file

@ -188,10 +188,13 @@ call s:Col('SpellLocal', 'yellow')
call s:Col('SpellRare', 'base7', 'violet') call s:Col('SpellRare', 'base7', 'violet')
" Diffing. " Diffing.
call s:Col('DiffAdd', 'green') call s:Col('DiffAdd', 'base7', 'green')
call s:Col('DiffChange', 'cyan') call s:Col('DiffChange', 'base7', 'blue')
call s:Col('DiffDelete', 'red') call s:Col('DiffDelete', 'base7', 'red')
call s:Col('DiffText', 'yellow') call s:Col('DiffText', 'base7', 'cyan')
" Directories (e.g. netrw).
call s:Col('Directory', 'cyan')
" Programming languages and filetypes ========================================== " Programming languages and filetypes ==========================================
@ -206,7 +209,7 @@ call s:Col('htmlItalic', 'magenta')
call s:Col('htmlBold', 'cyan', '') call s:Col('htmlBold', 'cyan', '')
" Plugin " ===================================================================== " Plugin =======================================================================
" GitGutter " GitGutter
call s:Col('GitGutterAdd', 'green', s:linenr_background) call s:Col('GitGutterAdd', 'green', s:linenr_background)