-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.sh
executable file
·139 lines (114 loc) · 2.96 KB
/
bootstrap.sh
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash
dotvim_dir="${HOME}/.dotvim"
dotvim_git="https://github.com/pricco/dotvim.git"
dotvim_branch="master"
info () {
if [ "${1}" -eq '0' ]; then
printf '\e[32m[✔]\e[0m %b\n' "$2" >&2
else
printf '\e[31m[✘]\e[0m %b\n' "$2" >&2
if [ -z "${3}" ] || [ "${3}" -eq "true" ] ; then
exit 1
fi
fi
}
user () {
printf ' %b' "${1}"
}
program_exists () {
local ret='0'
type $1 >/dev/null 2>&1 || { local ret='1'; }
# throw error on non-zero return value
if [ ! "${ret}" -eq '0' ]; then
info 1 "Sorry, we cannot continue without ${1}, please install it first."
fi
}
clone () {
if [ ! -e "${1}" ]; then
git clone -q --recursive "${2}" "${1}" &&
git checkout "${3}"
cd "${1}" &&
git submodule -q init &&
git submodule -q update --init --recursive
info $? "Cloned ${1}"
else
cd "${1}" &&
git pull -q origin "${3}" &&
git submodule -q update --init --recursive
info $? "Updated ${1}"
fi
}
link_file () {
local src=$1 dst=$2
local overwrite= backup= skip=
local action=
if [ -f "${dst}" -o -d "${dst}" -o -L "${dst}" ]
then
if [ "${overwrite_all}" == "false" ] && [ "${backup_all}" == "false" ] && [ "${skip_all}" == "false" ]
then
local currentSrc="$(readlink $dst)"
if [ "${currentSrc}" == "$src" ]
then
skip=true;
else
user "File already exists: ${dst} ($(basename "${src}")), what do you want to do?\n\
[s]kip, [S]kip all, [o]verwrite, [O]verwrite all, [b]ackup, [B]ackup all?"
read -n 1 action
printf "\n"
case "${action}" in
o )
overwrite=true;;
O )
overwrite_all=true;;
b )
backup=true;;
B )
backup_all=true;;
s )
skip=true;;
S )
skip_all=true;;
* )
;;
esac
fi
fi
overwrite=${overwrite:-$overwrite_all}
backup=${backup:-$backup_all}
skip=${skip:-$skip_all}
if [ "${overwrite}" == "true" ]
then
rm -rf "${dst}"
info $? "Removed ${dst}"
fi
if [ "${backup}" == "true" ]
then
mv "${dst}" "${dst}.backup"
info $? "Moved ${dst} to ${dst}.backup"
fi
if [ "$skip" == "true" ]
then
info 0 "Skipped ${src}"
fi
fi
if [ "${skip}" != "true" ] # "false" or empty
then
ln -s "${1}" "${2}"
info $? "Linked ${1} to ${2}"
fi
}
vim_install () {
program_exists "git"
clone "${dotvim_dir}" "${dotvim_git}" "${dotvim_branch}"
# Vim
program_exists "vim"
program_exists "curl"
# if [ ! -d "${HOME}/.vim/bundle" ]; then
# mkdir -p "${HOME}/.vim/bundle"
# fi
info $? "Updated plug.vim"
curl -sfLo "${HOME}/.vim/autoload/plug.vim" --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
local overwrite_all=false backup_all=false skip_all=false
link_file "${dotvim_dir}/.vimrc" "${HOME}/.vimrc"
}
vim_install