[UPDATE][VIM] Change colorscheme
I added more colorschemes that look good. Onedark should be a nice change from Gruvbox.
This commit is contained in:
parent
5c85e11535
commit
61fb44f08b
|
@ -2,7 +2,7 @@
|
||||||
let g:lightline={}
|
let g:lightline={}
|
||||||
|
|
||||||
" Use the wombat colorscheme
|
" Use the wombat colorscheme
|
||||||
let g:lightline.colorscheme='wombat'
|
let g:lightline.colorscheme='onedark'
|
||||||
|
|
||||||
" Status-line for active buffer
|
" Status-line for active buffer
|
||||||
let g:lightline.active={
|
let g:lightline.active={
|
||||||
|
|
12
vim/.vimrc
12
vim/.vimrc
|
@ -56,6 +56,14 @@ call plug#begin('~/.vim/plugged')
|
||||||
Plug 'nanotech/jellybeans.vim'
|
Plug 'nanotech/jellybeans.vim'
|
||||||
" Another nice dark theme
|
" Another nice dark theme
|
||||||
Plug 'morhetz/gruvbox'
|
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
|
" Fancy status bar
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
" }}}
|
" }}}
|
||||||
|
@ -170,8 +178,8 @@ set timeoutlen=500
|
||||||
" Set dark mode by default
|
" Set dark mode by default
|
||||||
set background=dark
|
set background=dark
|
||||||
|
|
||||||
" Use gruvbox
|
" Use onedark
|
||||||
colorscheme gruvbox
|
colorscheme onedark
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Search parameters {{{
|
" Search parameters {{{
|
||||||
|
|
Loading…
Reference in a new issue