summaryrefslogtreecommitdiff
path: root/plugins/vundle/vundle.plugin.zsh
blob: 39c36ac59f71c90f55044d7d74153513c6c57ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
  fi
}

function vundle () {
  vundle-init
  vim -c "execute \"BundleInstall\" | q"
}


function vundle-update () {
  vundle-init
  vim -c "execute \"BundleInstall!\" | q"
}