From d9f6a1b2500413f0bd1dde8ec3226402030e0a8b Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sat, 27 Sep 2014 18:53:29 -0700 Subject: [PATCH] Include Vundle if it's on the machine I'm on. --- vimrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/vimrc b/vimrc index cc3ac9a..29a191c 100644 --- a/vimrc +++ b/vimrc @@ -1,5 +1,15 @@ " Allow full use of vim options set nocompatible + +" Enable Vundle if installed +if filereadable(glob("~/.vim/bundle/Vundle.vim/README.md")) + filetype off + set rtp+=~/.vim/bundle/Vundle.vim + call vundle#begin() + Plugin 'gmarik/Vundle.vim' + call vundle#end() +endif + " Autoindentation set autoindent " Use same indentation style as above file