blob: d2aa183592cbafa7c0ca79a0fefd9c3036c2530b (
plain) (
blame)
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
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
shopt -s inherit_errexit lastpipe
plugins_dir="$HOME/.vim/pack/plugins/start"
readonly plugins_dir
plugins=(
alteraction/vim-colors-solarized
editorconfig/editorconfig-vim
)
pull() {
local plugin
for plugin in ${plugins[@]+"${plugins[@]}"}; do
echo "Plugin: $plugin"
local name
name="${plugin#*/}"
if [ -d "$name" ]; then
git -C "$name" pull -q
else
git clone -q "https://github.com/$plugin.git"
fi
done
}
main() {
mkdir -p -- "$plugins_dir"
cd -- "$plugins_dir"
pull
}
main
|