aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-08-05 23:01:51 +0800
committerjdhao <jdhao@hotmail.com>2021-08-05 23:01:51 +0800
commit0283382f6e91216fd23ef5af4b26d08b3ee4eee0 (patch)
tree1b9b4e48e8bc1c84b02b261ee953dc2775500a06
parent7c8f3b1e212a78900f5c901cb7c342844162e8a5 (diff)
update airlinethemes
+ Remove jellybeans and luna (they look terrible for ZOC terminal) + Add more themes
-rw-r--r--core/plugins.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/plugins.vim b/core/plugins.vim
index e5de644..e29fee2 100644
--- a/core/plugins.vim
+++ b/core/plugins.vim
@@ -378,7 +378,8 @@ endif
"""""""""""""""""""""""""""vim-airline setting""""""""""""""""""""""""""""""
" Set airline theme to a random one if it exists
let s:candidate_airlinetheme = ['ayu_mirage', 'lucius', 'ayu_dark', 'base16_bright',
- \ 'base16_adwaita', 'jellybeans', 'luna', 'raven', 'term']
+ \ 'base16_adwaita', 'raven', 'term', 'gruvbox_material', 'deus', 'edge', 'onedark',
+ \ 'sonokai']
let s:idx = utils#RandInt(0, len(s:candidate_airlinetheme)-1)
let s:theme = s:candidate_airlinetheme[s:idx]