mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
remove solarized color theme
It sucks for viewing diff.
This commit is contained in:
parent
455ae8a8b9
commit
9d40dce70e
@ -14,13 +14,6 @@ function! s:my_theme_dict.gruvbox8() dict abort
|
|||||||
colorscheme gruvbox8_hard
|
colorscheme gruvbox8_hard
|
||||||
endfunction
|
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
|
function! s:my_theme_dict.onedark() dict abort
|
||||||
packadd! onedark.nvim
|
packadd! onedark.nvim
|
||||||
|
|
||||||
@ -76,9 +69,8 @@ function! s:my_theme_dict.nightfox() dict abort
|
|||||||
colorscheme nordfox
|
colorscheme nordfox
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
let s:candidate_theme = ['gruvbox8', 'solarized', 'onedark',
|
let s:candidate_theme = ['gruvbox8', 'onedark', 'edge', 'sonokai', 'gruvbox_material',
|
||||||
\ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one', 'everforest',
|
\'nord', 'doom_one', 'everforest', 'nightfox']
|
||||||
\ 'nightfox']
|
|
||||||
|
|
||||||
let s:theme = utils#RandElement(s:candidate_theme)
|
let s:theme = utils#RandElement(s:candidate_theme)
|
||||||
let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme)
|
let s:colorscheme_func = printf('s:my_theme_dict.%s()', s:theme)
|
||||||
|
|||||||
@ -107,7 +107,6 @@ require("packer").startup({
|
|||||||
|
|
||||||
-- A list of colorscheme plugin you may want to try. Find what suits you.
|
-- A list of colorscheme plugin you may want to try. Find what suits you.
|
||||||
use({"lifepillar/vim-gruvbox8", opt = true})
|
use({"lifepillar/vim-gruvbox8", opt = true})
|
||||||
use({"ishan9299/nvim-solarized-lua", opt = true})
|
|
||||||
use({"navarasu/onedark.nvim", opt = true})
|
use({"navarasu/onedark.nvim", opt = true})
|
||||||
use({"sainnhe/edge", opt = true})
|
use({"sainnhe/edge", opt = true})
|
||||||
use({"sainnhe/sonokai", opt = true})
|
use({"sainnhe/sonokai", opt = true})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user