mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Remove neodark theme
It does not have good highlight for Markdown links.
This commit is contained in:
parent
9f8e36399a
commit
4d3c038cb5
@ -26,10 +26,6 @@ function! s:my_theme_dict.onedark() dict abort
|
||||
colorscheme onedark
|
||||
endfunction
|
||||
|
||||
function! s:my_theme_dict.neodark() dict abort
|
||||
colorscheme neodark
|
||||
endfunction
|
||||
|
||||
function! s:my_theme_dict.edge() dict abort
|
||||
let g:edge_enable_italic = 1
|
||||
let g:edge_better_performance = 1
|
||||
@ -59,7 +55,7 @@ function! s:my_theme_dict.doom_one() dict abort
|
||||
colorscheme doom-one
|
||||
endfunction
|
||||
|
||||
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', 'neodark',
|
||||
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark',
|
||||
\ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one']
|
||||
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
||||
let s:theme = s:candidate_theme[s:idx]
|
||||
|
||||
@ -90,7 +90,6 @@ require('packer').startup(
|
||||
use 'ajmwagar/vim-deus'
|
||||
use 'lifepillar/vim-solarized8'
|
||||
use 'navarasu/onedark.nvim'
|
||||
use 'KeitaNakamura/neodark.vim'
|
||||
use 'sainnhe/edge'
|
||||
use 'sainnhe/sonokai'
|
||||
use 'sainnhe/gruvbox-material'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user