From b6ae00b0a5d2da6dea5d726685bd4d4860b75f47 Mon Sep 17 00:00:00 2001 From: hosseintoussi Date: Sat, 26 Jan 2019 11:21:18 +0100 Subject: [PATCH] Added some git highlighting This is specially for staged and unstaged file - green and red. --- colors/codedark.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 1cbace3..7b6f5dd 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -343,3 +343,14 @@ call hi('texBeginEndModifier', s:cdLightBlue, {}, 'none', {}) call hi('texDocType', s:cdPink, {}, 'none', {}) call hi('texDocTypeArgs', s:cdLightBlue, {}, 'none', {}) +" Git: +call hi('gitcommitHeader', s:cdGray, {}, 'none', {}) +call hi('gitcommitOnBranch', s:cdGray, {}, 'none', {}) +call hi('gitcommitBranch', s:cdPink, {}, 'none', {}) +call hi('gitcommitComment', s:cdGray, {}, 'none', {}) +call hi('gitcommitSelectedType', s:cdGreen, {}, 'none', {}) +call hi('gitcommitSelectedFile', s:cdGreen, {}, 'none', {}) +call hi('gitcommitDiscardedType', s:cdRed, {}, 'none', {}) +call hi('gitcommitDiscardedFile', s:cdRed, {}, 'none', {}) +call hi('gitcommitOverflow', s:cdRed, {}, 'none', {}) +call hi('gitcommitBlank', {}, {}, 'none', {})