aboutsummaryrefslogtreecommitdiff
path: root/ui.vim
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-10-28 02:11:23 +0800
committerjdhao <jdhao@hotmail.com>2020-10-28 02:11:23 +0800
commitfc53a24ef4fce3e54959107476ddecd303b71799 (patch)
tree87f634f94f92877503b9db80d7fa32a61bf757b9 /ui.vim
parentf0756d8e3d2f0c6a8fadc2f3db6db944497c7b3c (diff)
fix minor issue
Diffstat (limited to 'ui.vim')
-rw-r--r--ui.vim5
1 files changed, 1 insertions, 4 deletions
diff --git a/ui.vim b/ui.vim
index 7f7a990..4804bec 100644
--- a/ui.vim
+++ b/ui.vim
@@ -13,9 +13,6 @@ set background=dark
"{{ Colorscheme settings
let s:my_theme_dict = {}
-function! s:my_theme_dict.srcery() dict abort
- colorscheme srcery
-endfunction
function! s:my_theme_dict.gruvbox8() dict abort
" We should check if theme exists before using it, otherwise you will get
@@ -98,7 +95,7 @@ function! s:my_theme_dict.toast() dict abort
endfunction
let s:candidate_theme = ['gruvbox8', 'srcery', 'deus', 'happy_hacking', 'solarized8',
- \ 'monokai', 'vim_one', 'material', 'onedark', 'toast']
+ \ 'monokai', 'vim_one', 'material', 'onedark', 'neodark', 'toast']
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
let s:theme = s:candidate_theme[s:idx]