Default to light color scheme

This commit is contained in:
Sonny 2019-06-26 23:20:57 +02:00
parent 94064771ce
commit 891c08254b
9 changed files with 5518 additions and 1305 deletions

View file

@ -10,10 +10,21 @@ set fillchars+=vert:\
set splitright
set splitbelow
" colorscheme
if exists('+termguicolors')
" enable termguicolors correctly for terminals other than
" xterm-256color see https://github.com/vim/vim/issues/993
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors
set background=light
colorscheme PaperColor
endif
" syntax on
syntax on
" switch buffers without writing to file
set hidden
@ -37,17 +48,6 @@ set backspace=2
" allow arrow keys to be used
set nocompatible
" colorscheme
if exists('+termguicolors')
" enable termguicolors correctly for terminals other than
" xterm-256color see https://github.com/vim/vim/issues/993
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors
colorscheme breezy
endif
" Color trailing spaces with red color
highlight ExtraWhitespace ctermbg=green guibg=green
match ExtraWhitespace /\s\+$/