diff options
author | 章正中 <z.ach@outlook.com> | 2015-08-21 14:28:03 +0800 |
---|---|---|
committer | 章正中 <z.ach@outlook.com> | 2015-08-21 14:28:03 +0800 |
commit | 1aeebf60a0dd09ba13a08ae0b81d1d44cad7d15c (patch) | |
tree | 46a5bc8519fd7fefe76e2e51e6da3c7db1e550c6 /plugins/vundle | |
parent | 192de6bcffb0294e19f4203f6f7dc1a7f3e427be (diff) | |
download | zsh-1aeebf60a0dd09ba13a08ae0b81d1d44cad7d15c.tar.gz zsh-1aeebf60a0dd09ba13a08ae0b81d1d44cad7d15c.tar.bz2 zsh-1aeebf60a0dd09ba13a08ae0b81d1d44cad7d15c.zip |
Update link
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 } |