summaryrefslogtreecommitdiff
path: root/.vim/pack/mvertes
diff options
context:
space:
mode:
Diffstat (limited to '.vim/pack/mvertes')
-rwxr-xr-x.vim/pack/mvertes/install.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vim/pack/mvertes/install.sh b/.vim/pack/mvertes/install.sh
new file mode 100755
index 0000000..f6b17cb
--- /dev/null
+++ b/.vim/pack/mvertes/install.sh
@@ -0,0 +1,18 @@
+#!/bin/sh -e
+
+plugins='mvertes/vimki fatih/vim-go'
+ht='vim -c "helptags doc" -c "q"'
+
+mkdir -p start
+cd start
+for p in $plugins
+do
+ n=${p##*/}
+ if [ -d "$n" ]; then
+ echo "update $p"
+ (cd $n && git pull && eval "$ht")
+ else
+ echo "init $p"
+ (git clone $p && cd "$n" && eval "$ht")
+ fi
+done