plugins/vundle/vundle.plugin.zsh
499819ce
 function vundle-init () {
   if [ ! -d ~/.vim/bundle/vundle/ ]
   then
     mkdir -p ~/.vim/bundle/vundle/
   fi
 
   if [ ! -d ~/.vim/bundle/vundle/.git/ ]
   then
     git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
053cb24d
     echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
499819ce
   fi
 }
 
 function vundle () {
   vundle-init
fe175661
   vim -c "execute \"BundleInstall\" | q | q"
499819ce
 }
 
 
 function vundle-update () {
   vundle-init
fe175661
   vim -c "execute \"BundleInstall!\" | q | q"
499819ce
 }