mirror of
https://github.com/joshdick/onedark.vim.git
synced 2025-11-13 05:23:48 -05:00
Merge pull request #22 from simonsmith/git-comment-color
Apply the comment color to git commit messages
This commit is contained in:
@@ -148,7 +148,7 @@ call s:h("DiffDelete", { "fg": s:red }) " diff mode: Deleted line
|
|||||||
call s:h("DiffText", { "fg": s:blue }) " diff mode: Changed text within a changed line
|
call s:h("DiffText", { "fg": s:blue }) " diff mode: Changed text within a changed line
|
||||||
call s:h("ErrorMsg", {}) " error messages on the command line
|
call s:h("ErrorMsg", {}) " error messages on the command line
|
||||||
call s:h("VertSplit", { "fg": s:vertsplit }) " the column separating vertically split windows
|
call s:h("VertSplit", { "fg": s:vertsplit }) " the column separating vertically split windows
|
||||||
call s:h("Folded", {}) " line used for closed folds
|
call s:h("Folded", { "fg": s:comment_grey }) " line used for closed folds
|
||||||
call s:h("FoldColumn", {}) " 'foldcolumn'
|
call s:h("FoldColumn", {}) " 'foldcolumn'
|
||||||
call s:h("SignColumn", {}) " column where signs are displayed
|
call s:h("SignColumn", {}) " column where signs are displayed
|
||||||
call s:h("IncSearch", { "fg": s:visual_black, "bg": s:visual_grey }) " 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
call s:h("IncSearch", { "fg": s:visual_black, "bg": s:visual_grey }) " 'incsearch' highlighting; also used for the text replaced with ":s///c"
|
||||||
@@ -214,7 +214,7 @@ call s:h("diffRemoved", { "fg": s:red })
|
|||||||
" | Git Highlighting |
|
" | Git Highlighting |
|
||||||
" +------------------+
|
" +------------------+
|
||||||
|
|
||||||
call s:h("gitcommitComment", {})
|
call s:h("gitcommitComment", { "fg": s:comment_grey })
|
||||||
call s:h("gitcommitUnmerged", { "fg": s:green })
|
call s:h("gitcommitUnmerged", { "fg": s:green })
|
||||||
call s:h("gitcommitOnBranch", {})
|
call s:h("gitcommitOnBranch", {})
|
||||||
call s:h("gitcommitBranch", { "fg": s:purple })
|
call s:h("gitcommitBranch", { "fg": s:purple })
|
||||||
|
|||||||
Reference in New Issue
Block a user