Remove termguicolors

This commit is contained in:
Sonny Bakker 2017-09-11 06:44:31 +02:00
parent c14fd0c690
commit 72ce081b2d
28 changed files with 2878 additions and 9748 deletions

View file

@ -6,7 +6,7 @@ filetype indent on
"Fix different locale settings when ssh'ing
set encoding=utf-8
"Set syntax on
"syntax on
syntax enable
"4 spaces instead of tabs
@ -26,25 +26,16 @@ set wildmenu
set backspace=2
" Vim & Tmux background color fix
set t_ut=
" Light colorscheme by default
colorscheme seagull
"Change theme depending on the time of day
let hr = (strftime('%H'))
if hr >= 19
colorscheme base16-eighties
colorscheme Tomorrow-Night
elseif hr >= 8
colorscheme xcode
colorscheme bubblegum-256-light
elseif hr >= 0
colorscheme base16-eighties
colorscheme Tomorrow-Night
endif
" Terminal colors
set termguicolors
"Automatically source vimrc on save.
autocmd! bufwritepost $MYVIMRC source $MYVIMRC