From 3bf4dc42cb63815c81f70557990770d0fb761174 Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Sat, 23 Aug 2014 23:32:13 -0600 Subject: [PATCH] Reduce contrast of '~' at end of file The NonText highlight controls the display of the tildes at the end of the file. Like other indicators, it can be distracting when editing, so likewise reducing its contrast. --- colors/pencil.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/pencil.vim b/colors/pencil.vim index c4adce8..f7f6974 100644 --- a/colors/pencil.vim +++ b/colors/pencil.vim @@ -188,7 +188,7 @@ call s:h("Todo", {"fg": s:actual_white, "bg": s:pink, "gui": "bold" " ordered according to `:help hitest.vim` call s:h("SpecialKey", {"fg": s:light_green}) -call s:h("NonText", {"fg": s:medium_gray}) +call s:h("NonText", {"fg": s:bg_subtle}) call s:h("Directory", {"fg": s:dark_blue}) call s:h("ErrorMsg", {"fg": s:pink}) call s:h("IncSearch", {"bg": s:yellow, "fg": s:light_black})