diff options
| author | jdhao <jdhao@hotmail.com> | 2021-10-23 17:42:27 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-10-23 17:42:27 +0800 |
| commit | f56e2670304c662cd744e573ab50791f038c7328 (patch) | |
| tree | 7710e3fdde8bb2c94a21482edacc46564598db53 | |
| parent | 9a5318c0e18e65a3eaf5e4882e49043dab2ef127 (diff) | |
reformat
| -rw-r--r-- | core/themes.vim | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/core/themes.vim b/core/themes.vim index c6b7219..646de1b 100644 --- a/core/themes.vim +++ b/core/themes.vim @@ -69,8 +69,17 @@ function! s:my_theme_dict.nightfox() dict abort colorscheme nordfox endfunction -let s:candidate_theme = ['gruvbox8', 'onedark', 'edge', 'sonokai', 'gruvbox_material', - \'nord', 'doom_one', 'everforest', 'nightfox'] +let s:candidate_theme = [ + \ 'gruvbox8', + \ 'onedark', + \ 'edge', + \ 'sonokai', + \ 'gruvbox_material', + \ 'nord', + \ 'doom_one', + \ 'everforest', + \ 'nightfox' + \ ] let s:theme = utils#RandElement(s:candidate_theme) let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme) |
