Include Vundle if it's on the machine I'm on.

This commit is contained in:
David Tomaschik
2014-09-27 18:53:29 -07:00
parent a3292747eb
commit d9f6a1b250

10
vimrc
View File

@@ -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