mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Remove tokyonight colorscheme
This commit is contained in:
parent
b9c2465338
commit
832fb4c795
@ -91,7 +91,6 @@ Plug 'lifepillar/vim-solarized8'
|
||||
Plug 'joshdick/onedark.vim'
|
||||
Plug 'KeitaNakamura/neodark.vim'
|
||||
Plug 'sainnhe/edge'
|
||||
Plug 'ghifarit53/tokyonight-vim'
|
||||
Plug 'sainnhe/sonokai'
|
||||
Plug 'sainnhe/gruvbox-material'
|
||||
|
||||
|
||||
10
core/ui.vim
10
core/ui.vim
@ -69,14 +69,6 @@ function! s:my_theme_dict.sonokai() dict abort
|
||||
colorscheme sonokai
|
||||
endfunction
|
||||
|
||||
function! s:my_theme_dict.tokyonight() dict abort
|
||||
if !utils#HasColorscheme('tokyonight') | return | endif
|
||||
|
||||
let g:tokyonight_style = 'night' " available: night, storm
|
||||
let g:tokyonight_enable_italic = 1
|
||||
colorscheme tokyonight
|
||||
endfunction
|
||||
|
||||
function! s:my_theme_dict.gruvbox_material() dict abort
|
||||
if !utils#HasColorscheme('gruvbox-material') | return | endif
|
||||
let g:gruvbox_material_enable_italic = 1
|
||||
@ -85,7 +77,7 @@ function! s:my_theme_dict.gruvbox_material() dict abort
|
||||
endfunction
|
||||
|
||||
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', 'neodark',
|
||||
\ 'edge', 'sonokai', 'tokyonight', 'gruvbox_material']
|
||||
\ 'edge', 'sonokai', 'gruvbox_material']
|
||||
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
||||
let s:theme = s:candidate_theme[s:idx]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user