Add diff colors

This commit is contained in:
Karl Horky 2021-01-05 19:09:23 +01:00 committed by GitHub
commit 46be2426f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -443,6 +443,10 @@ call <sid>hi('gitcommitOverflow', s:cdRed, {}, 'none', {})
call <sid>hi('gitcommitSummary', s:cdPink, {}, 'none', {})
call <sid>hi('gitcommitBlank', s:cdPink, {}, 'none', {})
" Diff:
call <sid>hi('diffAdded', s:cdLightGreen, {}, 'none', {})
call <sid>hi('diffRemoved', s:cdLightRed, {}, 'none', {})
" Lua:
call <sid>hi('luaFuncCall', s:cdYellow, {}, 'none', {})
call <sid>hi('luaFuncArgName', s:cdLightBlue, {}, 'none', {})