diff options
author | Chris Kempson <chriskempson@users.noreply.github.com> | 2017-05-25 11:38:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 11:38:36 +0100 |
commit | e5f2e537430714e0f07e2ca914c93710704dd9e1 (patch) | |
tree | 55e35477ed18cb25a2cd37b70904af61b09e38dc | |
parent | 02955c949ddbdc4f44811a4dd9194ae9f3ce19f9 (diff) | |
parent | d0e10c3ea3e0945a4367f224fcd56ba0bdf23597 (diff) |
Merge pull request #144 from coderonline/patch-1
Fixed color order
-rw-r--r-- | templates/default.mustache | 2 |
1 files changed, 1 insertions, 1 deletions
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 <sid>hi(group, guifg, guibg, ctermfg, ctermbg, attr, guisp) endfun " Vim editor colors +call <sid>hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "", "") call <sid>hi("Bold", "", "", "", "", "bold", "") call <sid>hi("Debug", s:gui08, "", s:cterm08, "", "", "") call <sid>hi("Directory", s:gui0D, "", s:cterm0D, "", "", "") @@ -140,7 +141,6 @@ call <sid>hi("Title", s:gui0D, "", s:cterm0D, "", "none", "") call <sid>hi("Conceal", s:gui0D, s:gui00, s:cterm0D, s:cterm00, "", "") call <sid>hi("Cursor", s:gui00, s:gui05, s:cterm00, s:cterm05, "", "") call <sid>hi("NonText", s:gui03, "", s:cterm03, "", "", "") -call <sid>hi("Normal", s:gui05, s:gui00, s:cterm05, s:cterm00, "", "") call <sid>hi("LineNr", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") call <sid>hi("SignColumn", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") call <sid>hi("StatusLine", s:gui04, s:gui02, s:cterm04, s:cterm02, "none", "") |