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