diff options
| author | jdhao <jdhao@hotmail.com> | 2021-08-04 01:57:51 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-08-04 01:57:51 +0800 |
| commit | 4d3c038cb500de307eb95e6b7c1ec21f075323c7 (patch) | |
| tree | cb4698156cafe1ad5f65de41fc21875ed0c6b155 | |
| parent | 9f8e36399a5f0c92be712a0b7609c57b020042b6 (diff) | |
Remove neodark theme
It does not have good highlight for Markdown links.
| -rw-r--r-- | core/ui.vim | 6 | ||||
| -rw-r--r-- | lua/plugins.lua | 1 |
2 files changed, 1 insertions, 6 deletions
diff --git a/core/ui.vim b/core/ui.vim index 7710c49..c29682f 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -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] diff --git a/lua/plugins.lua b/lua/plugins.lua index 8471f54..58e8b7d 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -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' |
