mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
update colorscheme sublimemonokai
This commit is contained in:
parent
7af18765b3
commit
ee97e2e4dd
@ -93,6 +93,7 @@ Plug 'kaicataldo/material.vim'
|
||||
Plug 'joshdick/onedark.vim'
|
||||
Plug 'KeitaNakamura/neodark.vim'
|
||||
Plug 'jsit/toast.vim'
|
||||
Plug 'ErichDonGubler/vim-sublime-monokai'
|
||||
|
||||
if !exists('g:started_by_firenvim')
|
||||
" colorful status line and theme
|
||||
|
||||
12
core/ui.vim
12
core/ui.vim
@ -76,8 +76,18 @@ 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
|
||||
|
||||
let s:candidate_theme = ['gruvbox8', 'srcery', 'deus', 'solarized8',
|
||||
\ 'material', 'onedark', 'neodark', 'toast']
|
||||
\ 'material', 'onedark', 'neodark', 'toast', 'sublimemonokai']
|
||||
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