background=dark for zenflesh

This commit is contained in:
Michael Chris Lopez
2021-09-14 06:38:07 +08:00
parent c728d71fa0
commit e300373fe5
3 changed files with 5 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ local template = [[if exists('g:colors_name')
set t_Co=256
endif
set background=light
set background=${background}
let g:colors_name = '${name}'
${termcolors}
@@ -49,6 +49,7 @@ return function(name)
string.format("colors/%s.vim", name),
template,
{
background = name == "zenbones" and "light" or "dark",
name = name,
termcolors = termcolors,
vimcolors = vimcolors,