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

remove material.vim colorscheme

Visual selection is barely visible.
This commit is contained in:
jdhao 2020-12-07 23:20:07 +08:00
parent bfc33716c7
commit b65846a454
2 changed files with 1 additions and 11 deletions

View File

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

View File

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