From f1db4300715e1a09ca234d1dbfb0767d09c46448 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 11 Sep 2015 10:46:28 -0700 Subject: [PATCH] Fix how I handle when no solarized scheme exists. --- dotfiles/vimrc | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/vimrc b/dotfiles/vimrc index 73d57bd..f59732b 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -58,7 +58,7 @@ if has('gui_running') else let g:solarized_termcolors=256 endif -colorscheme solarized +silent! colorscheme solarized " Enable filetype support filetype plugin indent on " Allow file modelines diff --git a/install.sh b/install.sh index 76d7a89..65e01aa 100755 --- a/install.sh +++ b/install.sh @@ -65,7 +65,7 @@ function install_basic_dir { function postinstall { # Install Vundle plugins if [ -d $HOME/.vim/bundle/Vundle.vim ] ; then - vim -s +VundleInstall +qall + vim +VundleInstall +qall fi }