mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Add colorscheme everforest
This commit is contained in:
parent
bac94b47a0
commit
5817b1c207
@ -55,8 +55,14 @@ function! s:my_theme_dict.doom_one() dict abort
|
|||||||
colorscheme doom-one
|
colorscheme doom-one
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:my_theme_dict.everforest() dict abort
|
||||||
|
let g:everforest_enable_italic = 1
|
||||||
|
let g:everforest_better_performance = 1
|
||||||
|
colorscheme everforest
|
||||||
|
endfunction
|
||||||
|
|
||||||
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark',
|
let s:candidate_theme = ['gruvbox8', 'deus', 'solarized8', 'onedark',
|
||||||
\ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one']
|
\ 'edge', 'sonokai', 'gruvbox_material', 'nord', 'doom_one', 'everforest']
|
||||||
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
let s:idx = utils#RandInt(0, len(s:candidate_theme)-1)
|
||||||
let s:theme = s:candidate_theme[s:idx]
|
let s:theme = s:candidate_theme[s:idx]
|
||||||
|
|
||||||
|
|||||||
@ -96,6 +96,7 @@ require("packer").startup({
|
|||||||
use("sainnhe/gruvbox-material")
|
use("sainnhe/gruvbox-material")
|
||||||
use("shaunsingh/nord.nvim")
|
use("shaunsingh/nord.nvim")
|
||||||
use("NTBBloodbath/doom-one.nvim")
|
use("NTBBloodbath/doom-one.nvim")
|
||||||
|
use("sainnhe/everforest")
|
||||||
|
|
||||||
-- colorful status line and theme
|
-- colorful status line and theme
|
||||||
use("vim-airline/vim-airline-themes")
|
use("vim-airline/vim-airline-themes")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user