diff --git a/.vimrc b/.vimrc index 7a1d254..12ff452 100644 --- a/.vimrc +++ b/.vimrc @@ -76,7 +76,11 @@ if &t_Co > 2 || has("gui_running") syntax on " turns on syntax highlighting set hlsearch " highlights the last searched pattern. set t_Co=256 " enable 256 color mode - colorscheme jellybeans + try + colorscheme jellybeans + catch + silent! colorscheme delek + endtry endif if has("autocmd") diff --git a/install.sh b/install.sh index b166636..9c7792c 100755 --- a/install.sh +++ b/install.sh @@ -28,3 +28,5 @@ done # setup Vundle echo "cloning Vundle" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim +echo "installing Vim plugins" +vim +PluginInstall +qall