diff options
| author | jdhao <jdhao@hotmail.com> | 2021-10-20 00:48:18 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-10-20 00:48:18 +0800 |
| commit | 3ce1d8cc82611a0b3e48e974391a312b53752f99 (patch) | |
| tree | 8abc5f64089eb4c041cf2a0373605a76faa8e0a2 /core | |
| parent | 498dcaef944ce235ebff08c5259f3b2e393eab1f (diff) | |
update theme list
Colorscheme vim-deus and solarized8 works badly for indent-blankline, so
remove them.
Diffstat (limited to 'core')
| -rw-r--r-- | core/ui.vim | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/core/ui.vim b/core/ui.vim index 415b927..d1aa961 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -14,17 +14,11 @@ function! s:my_theme_dict.gruvbox8() dict abort colorscheme gruvbox8_hard endfunction -function! s:my_theme_dict.deus() dict abort - packadd! vim-deus +function! s:my_theme_dict.solarized() dict abort + packadd! nvim-solarized-lua - colorscheme deus -endfunction - -function! s:my_theme_dict.solarized8() dict abort - packadd! vim-solarized8 - let g:solarized_term_italics=1 - let g:solarized_visibility='high' - colorscheme solarized8_high + " Load the colorsheme + colorscheme solarized-high endfunction function! s:my_theme_dict.onedark() dict abort @@ -82,7 +76,7 @@ function! s:my_theme_dict.nightfox() dict abort colorscheme nordfox endfunction -let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', +let s:candidate_theme = ['gruvbox8', 'solarized', 'onedark', \ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one', 'everforest', \ 'nightfox'] |
