diff --git a/templates/default.mustache b/templates/default.mustache index f95466f..8da6909 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -194,12 +194,12 @@ 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("Normal", s:gui05, "NONE", s:cterm05, "NONE", "", "") call hi("Bold", "", "", "", "", "bold", "") call hi("Debug", s:gui08, "", s:cterm08, "", "", "") call hi("Directory", s:gui0D, "", s:cterm0D, "", "", "") call hi("Error", s:gui00, s:gui08, s:cterm00, s:cterm08, "", "") -call hi("ErrorMsg", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") +call hi("ErrorMsg", s:gui08, "NONE", s:cterm08, "NONE", "", "") call hi("Exception", s:gui08, "", s:cterm08, "", "", "") call hi("FoldColumn", s:gui0C, s:gui01, s:cterm0C, s:cterm01, "", "") call hi("Folded", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") @@ -220,15 +220,15 @@ call hi("VisualNOS", s:gui08, "", s:cterm08, "", "", "") call hi("WarningMsg", s:gui08, "", s:cterm08, "", "", "") call hi("WildMenu", s:gui00, s:gui05, s:cterm00, s:cterm05, "", "") call hi("Title", s:gui0D, "", s:cterm0D, "", "none", "") -call hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "", "") +call hi("Conceal", s:gui0D, "NONE", s:cterm0D, "NONE", "", "") call hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "inverse", "") call hi("NonText", s:gui03, "", s:cterm03, "", "", "") call hi("Whitespace", s:gui03, "", s:cterm03, "", "", "") -call hi("LineNr", s:gui03, s:gui00, s:cterm03, s:cterm00, "", "") -call hi("SignColumn", s:gui03, s:gui00, s:cterm03, s:cterm00, "", "") +call hi("LineNr", s:gui03, "NONE", s:cterm03, "NONE", "", "") +call hi("SignColumn", s:gui03, "NONE", s:cterm03, "NONE", "", "") call hi("StatusLine", s:gui04, s:gui01, s:cterm04, s:cterm01, "none", "") call hi("StatusLineNC", s:gui03, s:gui01, s:cterm03, s:cterm01, "none", "") -call hi("VertSplit", s:gui01, s:gui00, s:cterm01, s:cterm00, "none", "") +call hi("VertSplit", s:gui01, "NONE", s:cterm01, "NONE", "none", "") call hi("ColorColumn", "", s:gui01, "", s:cterm01, "none", "") call hi("CursorColumn", "", s:gui01, "", s:cterm01, "none", "") call hi("CursorLine", "", s:gui01, "", s:cterm01, "none", "") @@ -403,11 +403,11 @@ call hi("DiffAdd", s:gui0B, s:gui02, s:cterm0B, s:cterm02, "", "") call hi("DiffChange", s:gui05, s:gui02, s:cterm05, s:cterm02, "", "") call hi("DiffDelete", s:gui08, s:gui02, s:cterm08, s:cterm02, "", "") call hi("DiffText", s:gui0D, s:gui02, s:cterm0D, s:cterm02, "", "") -call hi("DiffAdded", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "", "") -call hi("DiffFile", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") -call hi("DiffNewFile", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "", "") -call hi("DiffLine", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "", "") -call hi("DiffRemoved", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") +call hi("DiffAdded", s:gui0B, "NONE", s:cterm0B, "NONE", "", "") +call hi("DiffFile", s:gui08, "NONE", s:cterm08, "NONE", "", "") +call hi("DiffNewFile", s:gui0B, "NONE", s:cterm0B, "NONE", "", "") +call hi("DiffLine", s:gui0D, "NONE", s:cterm0D, "NONE", "", "") +call hi("DiffRemoved", s:gui08, "NONE", s:cterm08, "NONE", "", "") " Git highlighting call hi("gitcommitOverflow", s:gui08, "", s:cterm08, "", "", "") @@ -471,7 +471,7 @@ call hi("mailEmail", s:gui0D, "", s:cterm0D, "", "", "") " Markdown highlighting call hi("markdownCode", s:gui0B, "", s:cterm0B, "", "", "") -call hi("markdownError", s:gui05, s:gui00, s:cterm05, s:cterm00, "", "") +call hi("markdownError", s:gui05, "NONE", s:cterm05, "NONE", "", "") call hi("markdownCodeBlock", s:gui0B, "", s:cterm0B, "", "", "") call hi("markdownHeadingDelimiter", s:gui0D, "", s:cterm0D, "", "", "")