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 | |
| parent | 498dcaef944ce235ebff08c5259f3b2e393eab1f (diff) | |
update theme list
Colorscheme vim-deus and solarized8 works badly for indent-blankline, so
remove them.
| -rw-r--r-- | core/ui.vim | 16 | ||||
| -rw-r--r-- | lua/plugins.lua | 3 |
2 files changed, 6 insertions, 13 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'] diff --git a/lua/plugins.lua b/lua/plugins.lua index b4e3517..9c41f6d 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -102,8 +102,7 @@ require("packer").startup({ -- A list of colorscheme plugin you may want to try. Find what suits you. use({"lifepillar/vim-gruvbox8", event = 'VimEnter'}) - use({"ajmwagar/vim-deus", event = 'VimEnter'}) - use({"lifepillar/vim-solarized8", event = 'VimEnter'}) + use({"ishan9299/nvim-solarized-lua", event = 'VimEnter'}) use({"navarasu/onedark.nvim", event = 'VimEnter'}) use({"sainnhe/edge", event = 'VimEnter'}) use({"sainnhe/sonokai", event = 'VimEnter'}) |
