diff options
| author | jdhao <jdhao@hotmail.com> | 2021-02-25 23:26:05 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-02-25 23:26:05 +0800 |
| commit | 832fb4c795ea16d9210580453fa61829004d9911 (patch) | |
| tree | 42981f06062a5a4dfdb84ee7e45c2bdea93acd10 /core/ui.vim | |
| parent | b9c24653384450e7b9a4ad856f2525c7bd219acd (diff) | |
Remove tokyonight colorscheme
Diffstat (limited to 'core/ui.vim')
| -rw-r--r-- | core/ui.vim | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/core/ui.vim b/core/ui.vim index d2ff570..a62c25b 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -69,14 +69,6 @@ function! s:my_theme_dict.sonokai() dict abort colorscheme sonokai endfunction -function! s:my_theme_dict.tokyonight() dict abort - if !utils#HasColorscheme('tokyonight') | return | endif - - let g:tokyonight_style = 'night' " available: night, storm - let g:tokyonight_enable_italic = 1 - colorscheme tokyonight -endfunction - function! s:my_theme_dict.gruvbox_material() dict abort if !utils#HasColorscheme('gruvbox-material') | return | endif let g:gruvbox_material_enable_italic = 1 @@ -85,7 +77,7 @@ function! s:my_theme_dict.gruvbox_material() dict abort endfunction let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', 'neodark', - \ 'edge', 'sonokai', 'tokyonight', 'gruvbox_material'] + \ 'edge', 'sonokai', 'gruvbox_material'] let s:idx = utils#RandInt(0, len(s:candidate_theme)-1) let s:theme = s:candidate_theme[s:idx] |
