From 4ae213d2994c3a46f067bc9858d079d29d718369 Mon Sep 17 00:00:00 2001 From: jdhao Date: Tue, 20 Oct 2020 22:25:05 +0800 Subject: [PATCH] Remove gotham, it is too dark for the eye --- plugins.vim | 1 - ui.vim | 8 +------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/plugins.vim b/plugins.vim index 955b0b6..0def794 100644 --- a/plugins.vim +++ b/plugins.vim @@ -102,7 +102,6 @@ Plug 'ajmwagar/vim-deus' Plug 'https://gitlab.com/yorickpeterse/happy_hacking.vim.git' Plug 'lifepillar/vim-solarized8' Plug 'patstockwell/vim-monokai-tasty' -Plug 'whatyouhide/vim-gotham' Plug 'rakr/vim-one' Plug 'kaicataldo/material.vim' Plug 'joshdick/onedark.vim' diff --git a/ui.vim b/ui.vim index 9921065..6db458e 100644 --- a/ui.vim +++ b/ui.vim @@ -13,7 +13,7 @@ set background=dark "{{ Colorscheme settings let s:candidate_theme = ['gruvbox8', 'srcery', 'badwolf', 'deus', 'happy_hacking', 'solarized8', - \ 'monokai_tasty', 'gotham', 'vim_one', 'material', 'onedark'] + \ 'monokai_tasty', 'vim_one', 'material', 'onedark'] let s:idx = utils#RandInt(0, len(s:candidate_theme)-1) let s:theme = s:candidate_theme[s:idx] @@ -78,12 +78,6 @@ function! s:my_theme_dict.monokai_tasty() dict abort colorscheme vim-monokai-tasty endfunction -function! s:my_theme_dict.gotham() dict abort - if !utils#HasColorscheme('gotham') | return | endif - - colorscheme gotham -endfunction - function! s:my_theme_dict.vim_one() dict abort if !utils#HasColorscheme('one') | return | endif