aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/plugins.vim1
-rw-r--r--core/ui.vim8
2 files changed, 1 insertions, 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]