mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Remove toast colorscheme
Too dark to fit my taste.
This commit is contained in:
parent
7ed2607371
commit
fa28ef1b90
@ -90,7 +90,6 @@ Plug 'ajmwagar/vim-deus'
|
|||||||
Plug 'lifepillar/vim-solarized8'
|
Plug 'lifepillar/vim-solarized8'
|
||||||
Plug 'joshdick/onedark.vim'
|
Plug 'joshdick/onedark.vim'
|
||||||
Plug 'KeitaNakamura/neodark.vim'
|
Plug 'KeitaNakamura/neodark.vim'
|
||||||
Plug 'jsit/toast.vim'
|
|
||||||
Plug 'sainnhe/edge'
|
Plug 'sainnhe/edge'
|
||||||
Plug 'sainnhe/sonokai'
|
Plug 'sainnhe/sonokai'
|
||||||
|
|
||||||
|
|||||||
10
core/ui.vim
10
core/ui.vim
@ -53,12 +53,6 @@ function! s:my_theme_dict.neodark() dict abort
|
|||||||
colorscheme neodark
|
colorscheme neodark
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:my_theme_dict.toast() dict abort
|
|
||||||
if !utils#HasColorscheme('toast') | return | endif
|
|
||||||
|
|
||||||
colorscheme toast
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function! s:my_theme_dict.edge() dict abort
|
function! s:my_theme_dict.edge() dict abort
|
||||||
if !utils#HasColorscheme('edge') | return | endif
|
if !utils#HasColorscheme('edge') | return | endif
|
||||||
|
|
||||||
@ -75,8 +69,8 @@ function! s:my_theme_dict.sonokai() dict abort
|
|||||||
colorscheme sonokai
|
colorscheme sonokai
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark',
|
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', 'neodark',
|
||||||
\ 'neodark', 'toast', 'edge', 'sonokai']
|
\ 'edge', 'sonokai']
|
||||||
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
||||||
let s:theme = s:candidate_theme[s:idx]
|
let s:theme = s:candidate_theme[s:idx]
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user