Add support for Fugitive diffs.

Fixes #19.
This commit is contained in:
Josh Dick
2016-04-15 18:36:29 -04:00
parent ff39b101ec
commit 7871cc03d7

View File

@@ -1,6 +1,6 @@
" Vim Color File
" Name: onedark.vim
" Version: 1.44
" Version: 1.45
" Maintainer: https://github.com/joshdick/onedark.vim/
" License: The MIT License (MIT)
" Based On: https://github.com/MaxSt/FlatColor/
@@ -206,6 +206,10 @@ call s:h("GitGutterDelete", { "fg": s:red, "bg": s:gutter_bg_grey })
call s:h("GitGutterChange", { "fg": s:yellow, "bg": s:gutter_bg_grey })
call s:h("GitGutterChangeDelete", { "fg": s:red, "bg": s:gutter_bg_grey })
" Fugitive
call s:h("diffAdded", { "fg": s:green })
call s:h("diffRemoved", { "fg": s:red })
" +------------------+
" | Git Highlighting |
" +------------------+