From 21cff3e527309cbe94f35d35b3cea7ecfced25db Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 20 Dec 2020 23:12:58 +0800 Subject: Remove humanoid colorscheme Signify signs are barely readable. --- core/ui.vim | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'core/ui.vim') diff --git a/core/ui.vim b/core/ui.vim index 5bc7e8e..f517618 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -65,12 +65,6 @@ function! s:my_theme_dict.toast() dict abort colorscheme toast endfunction -function! s:my_theme_dict.humanoid() dict abort - if !utils#HasColorscheme('humanoid') | return | endif - - colorscheme humanoid -endfunction - function! s:my_theme_dict.edge() dict abort if !utils#HasColorscheme('edge') | return | endif @@ -88,7 +82,7 @@ function! s:my_theme_dict.sonokai() dict abort endfunction let s:candidate_theme = ['gruvbox8', 'srcery', 'deus', 'solarized8', - \ 'onedark', 'neodark', 'toast', 'humanoid', 'edge', 'sonokai'] + \ 'onedark', 'neodark', 'toast', 'edge', 'sonokai'] let s:idx = utils#RandInt(0, len(s:candidate_theme)-1) let s:theme = s:candidate_theme[s:idx] -- cgit v1.2.3