From 3978e1b7c00572b03525807f89864005832cc2a9 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Tue, 13 Apr 2021 00:46:50 +0200 Subject: [PATCH] And we have a theme winner. --- nvim/init.vim | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nvim/init.vim b/nvim/init.vim index e5bb6f1..82abd9a 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -1,5 +1,6 @@ call plug#begin('$XDG_DATA_HOME/vim-plugins') -Plug 'tomasr/molokai' +Plug 'fatih/molokai' +Plug 'pearance/vimez-themes' Plug 'junegunn/fzf' Plug 'junegunn/fzf.vim' Plug 'mhinz/vim-signify' @@ -58,7 +59,11 @@ map f :Goyo set bg=dark set termguicolors -colorscheme molokai +if &diff + colorscheme molokai +else + colorscheme molokaiez +endif set t_ZH= set t_ZR= @@ -79,7 +84,7 @@ command! -bang -nargs=? -complete=dir Colors \ call fzf#vim#colors({'options': ['-e', '--layout=reverse', '--preview', '']}, 0) let g:lightline = { - \ 'colorscheme': 'molokai', + \ 'colorscheme': 'powerlineish', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], \ [ 'readonly', 'filename' ] ],