mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
remove sublimemonokai colorscheme
Does not work well for markdown inline links.
This commit is contained in:
parent
9ff833e1ef
commit
c3cdad554b
@ -92,7 +92,6 @@ Plug 'lifepillar/vim-solarized8'
|
||||
Plug 'joshdick/onedark.vim'
|
||||
Plug 'KeitaNakamura/neodark.vim'
|
||||
Plug 'jsit/toast.vim'
|
||||
Plug 'ErichDonGubler/vim-sublime-monokai'
|
||||
Plug 'humanoid-colors/vim-humanoid-colorscheme'
|
||||
|
||||
if !exists('g:started_by_firenvim')
|
||||
|
||||
12
core/ui.vim
12
core/ui.vim
@ -65,16 +65,6 @@ function! s:my_theme_dict.toast() dict abort
|
||||
colorscheme toast
|
||||
endfunction
|
||||
|
||||
augroup sublmonokai
|
||||
autocmd!
|
||||
autocmd ColorScheme sublimemonokai hi clear SignColumn
|
||||
augroup END
|
||||
function! s:my_theme_dict.sublimemonokai() dict abort
|
||||
if !utils#HasColorscheme('sublimemonokai') | return | endif
|
||||
|
||||
colorscheme sublimemonokai
|
||||
endfunction
|
||||
|
||||
function! s:my_theme_dict.humanoid() dict abort
|
||||
if !utils#HasColorscheme('humanoid') | return | endif
|
||||
|
||||
@ -82,7 +72,7 @@ function! s:my_theme_dict.humanoid() dict abort
|
||||
endfunction
|
||||
|
||||
let s:candidate_theme = ['gruvbox8', 'srcery', 'deus', 'solarized8',
|
||||
\ 'onedark', 'neodark', 'toast', 'sublimemonokai', 'humanoid']
|
||||
\ 'onedark', 'neodark', 'toast', 'humanoid']
|
||||
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
||||
let s:theme = s:candidate_theme[s:idx]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user