aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-10-23 17:14:04 +0800
committerjdhao <jdhao@hotmail.com>2021-10-23 17:14:04 +0800
commit9d40dce70ec31bc04a46718863c91cb8a9f24bcf (patch)
tree1581eeba46c908f2ab591d943fc4e4fa0eaf1b4f /core
parent455ae8a8b90de2ea4c292cf69bf4dbe24af67b55 (diff)
remove solarized color theme
It sucks for viewing diff.
Diffstat (limited to 'core')
-rw-r--r--core/themes.vim12
1 files changed, 2 insertions, 10 deletions
diff --git a/core/themes.vim b/core/themes.vim
index 7bfc588..c6b7219 100644
--- a/core/themes.vim
+++ b/core/themes.vim
@@ -14,13 +14,6 @@ function! s:my_theme_dict.gruvbox8() dict abort
colorscheme gruvbox8_hard
endfunction
-function! s:my_theme_dict.solarized() dict abort
- packadd! nvim-solarized-lua
-
- " Load the colorsheme
- colorscheme solarized-high
-endfunction
-
function! s:my_theme_dict.onedark() dict abort
packadd! onedark.nvim
@@ -76,9 +69,8 @@ function! s:my_theme_dict.nightfox() dict abort
colorscheme nordfox
endfunction
-let s:candidate_theme = ['gruvbox8', 'solarized', 'onedark',
- \ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one', 'everforest',
- \ 'nightfox']
+let s:candidate_theme = ['gruvbox8', 'onedark', 'edge', 'sonokai', 'gruvbox_material',
+ \'nord', 'doom_one', 'everforest', 'nightfox']
let s:theme = utils#RandElement(s:candidate_theme)
let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme)