2021-08-25 08:24:10 +08:00
|
|
|
if exists('g:colors_name')
|
|
|
|
|
highlight clear
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
let g:colors_name = 'zenbones'
|
2021-02-07 20:43:35 +11:00
|
|
|
|
2021-11-01 10:12:33 +08:00
|
|
|
if has('nvim') && (!exists('g:' . g:colors_name . '_compat') || g:{g:colors_name}_compat == 0)
|
|
|
|
|
lua require("zenbones.util").apply_colorscheme()
|
2021-10-09 19:16:56 +08:00
|
|
|
else
|
2021-11-01 10:12:33 +08:00
|
|
|
call {g:colors_name . '_' . &background}#load()
|
2021-10-09 19:16:56 +08:00
|
|
|
endif
|