summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2015-08-31 22:20:53 -0700
committerRobby Russell <robby@planetargon.com>2015-08-31 22:20:53 -0700
commit7366b5677ed9d6909053fa2bbdfa0e52f5c7113e (patch)
treed07aecbdb1450a9bf49886e8ab8084584b8d9536 /plugins
parent01b378357b57c6ca0447daa8818e18facc5d8739 (diff)
parent1aeebf60a0dd09ba13a08ae0b81d1d44cad7d15c (diff)
downloadzsh-7366b5677ed9d6909053fa2bbdfa0e52f5c7113e.tar.gz
zsh-7366b5677ed9d6909053fa2bbdfa0e52f5c7113e.tar.bz2
zsh-7366b5677ed9d6909053fa2bbdfa0e52f5c7113e.zip
Merge pull request #4268 from ZhengzhongZhang/patch-1
Plugin vundle: update link
Diffstat (limited to 'plugins')
-rw-r--r--plugins/vundle/vundle.plugin.zsh10
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
}