From 2fe276d97f11389fd0ce4d844869de4753356c82 Mon Sep 17 00:00:00 2001 From: Von Random Date: Thu, 21 Apr 2016 18:08:26 +0300 Subject: [PATCH] PaperColor for now, let us see if it is a good one, eh --- vimrc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index 685933c..7a80276 100644 --- a/vimrc +++ b/vimrc @@ -1,5 +1,5 @@ set nocompatible -set background=light +set background=dark set backspace=indent,eol,start set cursorline set foldmethod=marker @@ -102,6 +102,7 @@ if v:version >= 700 Plug 'morhetz/gruvbox' Plug 'romainl/Apprentice' Plug 'vdrandom/forked-solarized.vim' + Plug 'NLKNguyen/papercolor-theme' " syntax highlight plugins Plug 'puppetlabs/puppet-syntax-vim' @@ -116,10 +117,13 @@ if v:version >= 700 map k (easymotion-k) " lightline options + " 'active': { 'right': [ ['lineinfo', 'percent'] ] }, let g:lightline = { + \ 'colorscheme': 'PaperColor', \ 'separator': { 'left': "\ue0b0", 'right': "\ue0b2" }, \ 'subseparator': { 'left': "\ue0b1", 'right': "\ue0b3" }, - \ } + \ 'component': { 'readonly': '%{&readonly?"\ue0a2":""}' }, + \ } " airline options "let g:airline_symbols={} @@ -166,7 +170,7 @@ if v:version >= 700 let g:solarized_italic=0 let g:solarized_underline=0 let g:solarized_visibility='low' - colorscheme solarized + colorscheme PaperColor else colorscheme elflord endif