mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:20:04 +08:00
8 lines
229 B
Plaintext
8 lines
229 B
Plaintext
Execute ( SpaceVim colorscheme ):
|
|
let g:current_colors = get(g:, 'colors_name', '')
|
|
colorscheme SpaceVim
|
|
AssertEqual g:colors_name, 'SpaceVim'
|
|
if !empty(g:current_colors)
|
|
exe 'colorscheme ' . g:current_colors
|
|
endif
|