summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/vundle/vundle.plugin.zsh25
1 files changed, 22 insertions, 3 deletions
diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh
index 7caed4715..39c36ac59 100644
--- a/plugins/vundle/vundle.plugin.zsh
+++ b/plugins/vundle/vundle.plugin.zsh
@@ -1,3 +1,22 @@
-alias vundle-init='git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle'
-alias vundle='vim -c "execute \"BundleInstall\" | q"'
-alias vundle-update='vim -c "execute \"BundleInstall!\" | q"'
+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
+ vim -c "execute \"BundleInstall\" | q"
+}
+
+
+function vundle-update () {
+ vundle-init
+ vim -c "execute \"BundleInstall!\" | q"
+}