vundle.plugin.zsh 411 Bytes
Newer Older
Max Gonzih's avatar
Max Gonzih committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
15
  vim -c "execute \"BundleInstall\" | q | q"
Max Gonzih's avatar
Max Gonzih committed
16
17
18
19
20
}


function vundle-update () {
  vundle-init
21
  vim -c "execute \"BundleInstall!\" | q | q"
Max Gonzih's avatar
Max Gonzih committed
22
}