]> git.rmz.io Git - dotfiles.git/blob - zsh/plugins/vundle/vundle.plugin.zsh
merge oh-my-zsh into subdir
[dotfiles.git] / zsh / plugins / vundle / vundle.plugin.zsh
1 function vundle-init () {
2 if [ ! -d ~/.vim/bundle/vundle/ ]
3 then
4 mkdir -p ~/.vim/bundle/vundle/
5 fi
6
7 if [ ! -d ~/.vim/bundle/vundle/.git/ ]
8 then
9 git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
10 echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
11 fi
12 }
13
14 function vundle () {
15 vundle-init
16 vim -c "execute \"BundleInstall\" | q | q"
17 }
18
19
20 function vundle-update () {
21 vundle-init
22 vim -c "execute \"BundleInstall!\" | q | q"
23 }