diff options
| author | Andrew Janke <andrew@apjanke.net> | 2015-09-19 15:07:36 -0400 | 
|---|---|---|
| committer | Andrew Janke <andrew@apjanke.net> | 2015-09-19 15:07:36 -0400 | 
| commit | 6cddf7202b8ef5c2eb2dfc081d870dc9e751d646 (patch) | |
| tree | be3fe162edbc04946eea014a3612280d4909dc1e /plugins/vundle | |
| parent | 82c76f6b5c2718622a532fb759231e8d24171413 (diff) | |
| parent | cbc1a0806e910f7b4eed07b992d3d88ff7cb1162 (diff) | |
| download | zsh-6cddf7202b8ef5c2eb2dfc081d870dc9e751d646.tar.gz zsh-6cddf7202b8ef5c2eb2dfc081d870dc9e751d646.tar.bz2 zsh-6cddf7202b8ef5c2eb2dfc081d870dc9e751d646.zip  | |
Merge branch 'master' into installer-portable-colors
Diffstat (limited to 'plugins/vundle')
| -rw-r--r-- | plugins/vundle/vundle.plugin.zsh | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh index fa1911477..0f071597a 100644 --- a/plugins/vundle/vundle.plugin.zsh +++ b/plugins/vundle/vundle.plugin.zsh @@ -1,13 +1,13 @@  function vundle-init () { -  if [ ! -d ~/.vim/bundle/vundle/ ] +  if [ ! -d ~/.vim/bundle/Vundle.vim/ ]    then -    mkdir -p ~/.vim/bundle/vundle/ +    mkdir -p ~/.vim/bundle/Vundle.vim/    fi -  if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ] +  if [ ! -d ~/.vim/bundle/Vundle.vim/.git ] && [ ! -f ~/.vim/bundle/Vundle.vim/.git ]    then -    git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle -    echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n" +    git clone git://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim +    echo "\n\tRead about vim configuration for vundle at https://github.com/VundleVim/Vundle.vim\n"    fi  }  | 
