From 59cad202728dbfd2f4a2997004e1ec66b205adeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Michalke?= Date: Wed, 1 May 2019 00:25:14 +0200 Subject: [PATCH 1/2] change color for search and matching parenthesis --- colors/material-monokai.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/material-monokai.vim b/colors/material-monokai.vim index dfdbb5c..b1f872c 100644 --- a/colors/material-monokai.vim +++ b/colors/material-monokai.vim @@ -118,8 +118,8 @@ call s:h("StatusLineNC", { "fg": s:darkgrey, "bg": s:coolgrey, "format": call s:h("WildMenu", { "fg": s:white, "bg": s:pink }) call s:h("TabLine", { "fg": s:white, "bg": s:darkblack, "format": "reverse" }) call s:h("Visual", { "bg": s:lightgrey }) -call s:h("Search", { "fg": s:black, "bg": s:yellow }) -call s:h("MatchParen", { "fg": s:black, "bg": s:purple }) +call s:h("Search", { "fg": s:black, "bg": s:pink }) +call s:h("MatchParen", { "fg": s:purple, }) call s:h("Question", { "fg": s:yellow }) call s:h("ModeMsg", { "fg": s:yellow }) call s:h("MoreMsg", { "fg": s:yellow }) From 4a10c64f00b172126758a330ef7ebb6c9727f72e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Michalke?= Date: Thu, 9 Jul 2020 14:34:47 +0200 Subject: [PATCH 2/2] Add some custom Highlighting Groups. --- colors/material-monokai.vim | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/colors/material-monokai.vim b/colors/material-monokai.vim index b1f872c..ba0ee11 100644 --- a/colors/material-monokai.vim +++ b/colors/material-monokai.vim @@ -179,6 +179,7 @@ call s:h("Function", { "fg": s:green }) call s:h("Statement", { "fg": s:pink }) call s:h("Operator", { "fg": s:pink }) +call s:h("OperatorBold", { "fg": s:pink, "format" : "bold" }) call s:h("Label", { "fg": s:pink }) call s:h("Keyword", { "fg": s:aqua }) " Conditional" @@ -201,7 +202,11 @@ call s:h("Tag", { "fg": s:pink }) call s:h("Todo", { "fg": s:aqua, "format": "bold,italic" }) call s:h("Comment", { "fg": s:coolgrey, "format": "italic" }) -call s:h("Underlined", { "fg": s:green }) +call s:h("Orange", { "fg": s:orange }) +call s:h("Bold", { "format" : "bold" }) +call s:h("Underlined", { "format" : "underline" }) +call s:h("BoldUnderlined",{ "format" : "bold,underline" }) +call s:h("Strike", { "format" : "strikethrough" }) call s:h("Ignore", {}) call s:h("Error", { "fg": s:red, "bg": s:darkred }) @@ -400,3 +405,4 @@ call s:h("org_shade_stars", { "fg": s:grey }) call s:h("org_list_unordered", { "fg": s:orange }) call s:h("org_list_ordered", { "fg": s:orange }) call s:h("org_timestamp", { "fg": s:pink }) +