create setup_colorscheme in vimscript

This commit is contained in:
Michael Chris Lopez
2021-11-06 13:05:03 +08:00
parent 897a0559a6
commit 981c2bc0b2
2 changed files with 18 additions and 11 deletions

View File

@@ -1,11 +1 @@
if exists('g:colors_name')
highlight clear
endif
let g:colors_name = 'zenbones'
if has('nvim') && (!exists('g:' . g:colors_name . '_compat') || g:{g:colors_name}_compat == 0)
lua require("zenbones.util").apply_colorscheme()
else
call {g:colors_name . '_' . &background}#load()
endif
call zenbones#util#setup_colorscheme('zenbones')