summaryrefslogtreecommitdiff
path: root/.vim/pack/mvertes/install.sh
blob: 90cd4b3d2243d1f71051f7828ed2122a611ab7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh -e

plugins='
git@github.com:mvertes/vimki
git@github.com:fatih/vim-go
git@github.com:othree/xml.vim
git@github.com:junegunn/fzf.vim
git@github.com:mattn/libcallex-vim
git@github.com:bytesnake/vim-graphical-preview
'
ht='test -d doc && 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