diff options
Diffstat (limited to 'core/ui.vim')
| -rw-r--r-- | core/ui.vim | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/ui.vim b/core/ui.vim index 7710c49..c29682f 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -26,10 +26,6 @@ function! s:my_theme_dict.onedark() dict abort colorscheme onedark endfunction -function! s:my_theme_dict.neodark() dict abort - colorscheme neodark -endfunction - function! s:my_theme_dict.edge() dict abort let g:edge_enable_italic = 1 let g:edge_better_performance = 1 @@ -59,7 +55,7 @@ function! s:my_theme_dict.doom_one() dict abort colorscheme doom-one endfunction -let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', 'neodark', +let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', \ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one'] let s:idx = utils#RandInt(0, len(s:candidate_theme)-1) let s:theme = s:candidate_theme[s:idx] |
