From d0e10c3ea3e0945a4367f224fcd56ba0bdf23597 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 8 May 2017 00:47:51 +0200 Subject: Fixed color order The order in which the colors are getting set seems to play a role. From :h cterm-colors: < When setting the "ctermbg" color for the Normal group, the 'background' option will be adjusted automatically. This causes the highlight groups that depend on 'background' to change! This means you should set the colors for Normal first, before setting other colors. In my case I had base16-tomorrow installed with airline and the whitespace warning of airline was hard to read. It turned out that this was the root cause for that: I had :set background=light before :colorscheme base16-tomorrow in my vimrc and :verbose set background? revealed, that base16-tomorrow.vim had reset it back to dark, even though it does not contain any set background-command. --- templates/default.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/default.mustache') diff --git a/templates/default.mustache b/templates/default.mustache index 502b2c3..6318b5f 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -113,6 +113,7 @@ fun hi(group, guifg, guibg, ctermfg, ctermbg, attr, guisp) endfun " Vim editor colors +call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "", "") call hi("Bold", "", "", "", "", "bold", "") call hi("Debug", s:gui08, "", s:cterm08, "", "", "") call hi("Directory", s:gui0D, "", s:cterm0D, "", "", "") @@ -140,7 +141,6 @@ call hi("Title", s:gui0D, "", s:cterm0D, "", "none", "") call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "", "") call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "", "") call hi("NonText", s:gui03, "", s:cterm03, "", "", "") -call hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "", "") call hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") call hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") call hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none", "") -- cgit v1.2.3