aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-12-07 23:20:07 +0800
committerjdhao <jdhao@hotmail.com>2020-12-07 23:20:07 +0800
commitb65846a454166fd2fe814427b082a1dc9dba9ad8 (patch)
tree7b16360a0c60dd05d2540c9507da84c93e9a7616 /core
parentbfc33716c70f8cbc410ecbb3312405563439862f (diff)
remove material.vim colorscheme
Visual selection is barely visible.
Diffstat (limited to 'core')
-rw-r--r--core/plugins.vim1
-rw-r--r--core/ui.vim11
2 files changed, 1 insertions, 11 deletions
diff --git a/core/plugins.vim b/core/plugins.vim
index 2eb2b71..adc9de5 100644
--- a/core/plugins.vim
+++ b/core/plugins.vim
@@ -89,7 +89,6 @@ Plug 'lifepillar/vim-gruvbox8'
Plug 'srcery-colors/srcery-vim'
Plug 'ajmwagar/vim-deus'
Plug 'lifepillar/vim-solarized8'
-Plug 'kaicataldo/material.vim'
Plug 'joshdick/onedark.vim'
Plug 'KeitaNakamura/neodark.vim'
Plug 'jsit/toast.vim'
diff --git a/core/ui.vim b/core/ui.vim
index a440361..dd22759 100644
--- a/core/ui.vim
+++ b/core/ui.vim
@@ -46,15 +46,6 @@ function! s:my_theme_dict.solarized8() dict abort
colorscheme solarized8_high
endfunction
-function! s:my_theme_dict.material() dict abort
- if !utils#HasColorscheme('material') | return | endif
-
- let g:material_terminal_italics = 1
- " theme_style can be 'default', 'dark' or 'palenight'
- let g:material_theme_style = 'default'
- colorscheme material
-endfunction
-
function! s:my_theme_dict.onedark() dict abort
if !utils#HasColorscheme('onedark') | return | endif
@@ -90,7 +81,7 @@ function! s:my_theme_dict.humanoid() dict abort
colorscheme humanoid
endfunction
-let s:candidate_theme = ['gruvbox8', 'srcery', 'deus', 'solarized8', 'material',
+let s:candidate_theme = ['gruvbox8', 'srcery', 'deus', 'solarized8',
\ 'onedark', 'neodark', 'toast', 'sublimemonokai', 'humanoid']
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
let s:theme = s:candidate_theme[s:idx]