diff options
| author | Marc Vertes <mvertes@free.fr> | 2020-05-16 18:41:47 +0200 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2020-05-16 18:41:47 +0200 |
| commit | 5093d336fba6605a232bbdf4b39b1726247bae71 (patch) | |
| tree | 9323c9af08749e205a2be95eab237ad926730703 /.vim/pack | |
| parent | 71a729174a5f24a6ec644e1903976aa790415a7f (diff) | |
update
Diffstat (limited to '.vim/pack')
| -rwxr-xr-x | .vim/pack/mvertes/install.sh | 18 |
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 |
