From 21cff3e527309cbe94f35d35b3cea7ecfced25db Mon Sep 17 00:00:00 2001 From: jdhao Date: Sun, 20 Dec 2020 23:12:58 +0800 Subject: [PATCH] Remove humanoid colorscheme Signify signs are barely readable. --- core/plugins.vim | 1 - core/ui.vim | 8 +------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/core/plugins.vim b/core/plugins.vim index 70bdcb0..be8eccb 100644 --- a/core/plugins.vim +++ b/core/plugins.vim @@ -92,7 +92,6 @@ Plug 'lifepillar/vim-solarized8' Plug 'joshdick/onedark.vim' Plug 'KeitaNakamura/neodark.vim' Plug 'jsit/toast.vim' -Plug 'humanoid-colors/vim-humanoid-colorscheme' Plug 'sainnhe/edge' Plug 'sainnhe/sonokai' 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]