diff --git a/core/ui.vim b/core/ui.vim index 415b927..d1aa961 100644 --- a/core/ui.vim +++ b/core/ui.vim @@ -14,17 +14,11 @@ function! s:my_theme_dict.gruvbox8() dict abort colorscheme gruvbox8_hard endfunction -function! s:my_theme_dict.deus() dict abort - packadd! vim-deus +function! s:my_theme_dict.solarized() dict abort + packadd! nvim-solarized-lua - colorscheme deus -endfunction - -function! s:my_theme_dict.solarized8() dict abort - packadd! vim-solarized8 - let g:solarized_term_italics=1 - let g:solarized_visibility='high' - colorscheme solarized8_high + " Load the colorsheme + colorscheme solarized-high endfunction function! s:my_theme_dict.onedark() dict abort @@ -82,7 +76,7 @@ function! s:my_theme_dict.nightfox() dict abort colorscheme nordfox endfunction -let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark', +let s:candidate_theme = ['gruvbox8', 'solarized', 'onedark', \ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one', 'everforest', \ 'nightfox'] diff --git a/lua/plugins.lua b/lua/plugins.lua index b4e3517..9c41f6d 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -102,8 +102,7 @@ require("packer").startup({ -- A list of colorscheme plugin you may want to try. Find what suits you. use({"lifepillar/vim-gruvbox8", event = 'VimEnter'}) - use({"ajmwagar/vim-deus", event = 'VimEnter'}) - use({"lifepillar/vim-solarized8", event = 'VimEnter'}) + use({"ishan9299/nvim-solarized-lua", event = 'VimEnter'}) use({"navarasu/onedark.nvim", event = 'VimEnter'}) use({"sainnhe/edge", event = 'VimEnter'}) use({"sainnhe/sonokai", event = 'VimEnter'})