From 61fb44f08b85909cf398c0f5f3a0cdb7ff253c03 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 25 Nov 2019 10:49:36 +0100 Subject: [PATCH] [UPDATE][VIM] Change colorscheme I added more colorschemes that look good. Onedark should be a nice change from Gruvbox. --- vim/.vim/plugin/settings/lightline.vim | 2 +- vim/.vimrc | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/vim/.vim/plugin/settings/lightline.vim b/vim/.vim/plugin/settings/lightline.vim index feaa733..0513160 100644 --- a/vim/.vim/plugin/settings/lightline.vim +++ b/vim/.vim/plugin/settings/lightline.vim @@ -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={ diff --git a/vim/.vimrc b/vim/.vimrc index 6857f00..ec48c41 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -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 {{{