Files
zenbones-theme/colors/zenbones.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
297 B
VimL
Raw Normal View History

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()
else
2021-11-01 10:12:33 +08:00
call {g:colors_name . '_' . &background}#load()
endif