[UPDATE][VIM] Change colorscheme

I added more colorschemes that look good. Onedark should be a nice
change from Gruvbox.
This commit is contained in:
Bruno BELANYI 2019-11-25 10:49:36 +01:00
parent 5c85e11535
commit 61fb44f08b
2 changed files with 11 additions and 3 deletions

View file

@ -2,7 +2,7 @@
let g:lightline={}
" Use the wombat colorscheme
let g:lightline.colorscheme='wombat'
let g:lightline.colorscheme='onedark'
" Status-line for active buffer
let g:lightline.active={

View file

@ -56,6 +56,14 @@ call plug#begin('~/.vim/plugged')
Plug 'nanotech/jellybeans.vim'
" Another nice dark theme
Plug 'morhetz/gruvbox'
" Yet another nice dark theme
Plug 'jonathanfilip/vim-lucius'
" More dark colorschemes
Plug 'joshdick/onedark.vim'
" And even more
Plug 'rakr/vim-one'
" And another one
Plug 'junegunn/seoul256.vim'
" Fancy status bar
Plug 'itchyny/lightline.vim'
" }}}
@ -170,8 +178,8 @@ set timeoutlen=500
" Set dark mode by default
set background=dark
" Use gruvbox
colorscheme gruvbox
" Use onedark
colorscheme onedark
" }}}
" Search parameters {{{