From ee97e2e4ddb3aa7f41bf34167f24a9747e685c97 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sat, 28 Nov 2020 23:24:10 +0800 Subject: update colorscheme sublimemonokai --- core/ui.vim | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'core/ui.vim') diff --git a/core/ui.vim b/core/ui.vim index 820e8fc..e11c6eb 100644 --- a/core/ui.vim +++ b/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] -- cgit v1.2.3