1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Remove humanoid colorscheme

Signify signs are barely readable.
This commit is contained in:
jdhao 2020-12-20 23:12:58 +08:00
parent 8be2d18ac0
commit 21cff3e527
2 changed files with 1 additions and 8 deletions

View File

@ -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'

View File

@ -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]