-
Notifications
You must be signed in to change notification settings - Fork 0
/
install
479 lines (337 loc) · 15.5 KB
/
install
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#!/usr/bin/env bash
set -e
skip_system_packages="${1}"
os_type="$(uname -s)"
apt_packages="curl git tmux ripgrep zsh"
apt_packages_optional="zip unzip"
###############################################################################
# Detect OS and distro type
###############################################################################
function no_system_packages() {
cat <<EOF
System package installation isn't supported with your OS / distro.
Please install any dependent packages on your own. You can view the list at:
https://github.com/sassdavid/dotfiles/blob/main/install
Then re-run the script and explicitly skip installing system packages:
bash <(curl -sS https://raw.githubusercontent.com/sassdavid/dotfiles/main/install) --skip-system-packages
EOF
exit 1
}
case "${os_type}" in
Linux*)
os_type="Linux"
if [ ! -f "/etc/debian_version" ]; then
[ -z "${skip_system_packages}" ] && no_system_packages
fi
;;
Darwin*) os_type="macOS" ;;
*)
os_type="Other"
[ -z "${skip_system_packages}" ] && no_system_packages
;;
esac
###############################################################################
# Install packages using your OS' package manager
###############################################################################
function apt_install_packages {
sudo add-apt-repository -y ppa:git-core/ppa
# shellcheck disable=SC2086
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get install -y ${apt_packages} ${apt_packages_optional}
sudo apt-get clean && sudo rm -rf /var/lib/apt/lists /var/cache/apt/archives
}
function display_packages {
if [ "${os_type}" == "Linux" ]; then
echo "${apt_packages} ${apt_packages_optional}"
fi
}
if [ -z "${skip_system_packages}" ]; then
cat <<EOF
If you choose yes, all of the system packages below will be installed:
$(display_packages)
If you choose no, the above packages will not be installed and this script
will exit. This gives you a chance to edit the list of packages if you don't
agree with any of the decisions.
The packages listed after zsh are technically optional but are quite useful.
Keep in mind if you don't install pwgen you won't be able to generate random
passwords using a custom alias that's included in these dotfiles.
EOF
while true; do
read -rp "Do you want to install the above packages? (y/n) " yn
case "${yn}" in
[Yy]*)
if [ "${os_type}" == "Linux" ]; then
apt_install_packages
fi
break
;;
[Nn]*) exit 0 ;;
*) echo "Please answer y or n" ;;
esac
done
else
echo "System package installation was skipped!"
fi
###############################################################################
# Clone dotfiles
###############################################################################
read -rep $'\nWhere do you want to clone these dotfiles to [~/dotfiles]? ' clone_path
clone_path="${clone_path:-"${HOME}/dotfiles"}"
# Ensure path doesn't exist.
while [ -e "${clone_path}" ]; do
read -rep $'\nPath exists, try again? (y) ' y
case "${y}" in
[Yy]*)
break
;;
*) echo "Please answer y or CTRL+c the script to abort everything" ;;
esac
done
echo
# This is used to locally develop the install script.
if [ "${DEBUG}" == "1" ]; then
cp -R "${PWD}/." "${clone_path}"
else
git clone https://github.com/sassdavid/dotfiles.git "${clone_path}"
fi
###############################################################################
# Create initial directories
###############################################################################
mkdir -p "${HOME}/.config/zsh" "${HOME}/.config/gitalias" \
"${HOME}/.cache/zsh" "${HOME}/.local/bin" \
"${HOME}/.local/share" "${HOME}/.local/state" \
"${HOME}/.aws" "${HOME}/.kube"
###############################################################################
# Personalize git user and setup gitalias
###############################################################################
cp "${clone_path}/.gitconfig.user" "${HOME}/.gitconfig.user"
curl https://raw.githubusercontent.com/GitAlias/gitalias/main/gitalias.txt -o "${HOME}/.config/gitalias/gitalias.txt"
###############################################################################
# Install zsh plugins
###############################################################################
"${clone_path}/.local/bin/update-zsh-plugins"
###############################################################################
# Install mongodb stuffs
###############################################################################
"${clone_path}/.local/bin/install-mongodb-stuffs"
###############################################################################
# Install tpm (tmux plugin manager)
###############################################################################
rm -rf "${HOME}/.tmux/plugins/tpm"
git clone --depth 1 https://github.com/tmux-plugins/tpm "${HOME}/.tmux/plugins/tpm"
###############################################################################
# Install fzf (fuzzy finder on the terminal and used by a Vim plugin)
###############################################################################
rm -rf "${HOME}/.local/share/fzf"
git clone --depth 1 https://github.com/junegunn/fzf.git "${HOME}/.local/share/fzf" &&
yes | "${HOME}/.local/share/fzf/install" --bin --no-update-rc
###############################################################################
# Carefully create symlinks
###############################################################################
cat <<EOF
-------------------------------------------------------------------------------
ln -fs "${clone_path}/.zshenv" "${HOME}/.zshenv"
ln -fs "${clone_path}/.config/zsh/.zshrc" "${HOME}/.config/zsh/.zshrc"
ln -fs "${clone_path}/.config/zsh/.zprofile" "${HOME}/.config/zsh/.zprofile"
ln -fs "${clone_path}/.config/zsh/.aliases" "${HOME}/.config/zsh/.aliases"
ln -fs "${clone_path}/.gitconfig" "${HOME}/.gitconfig"
ln -fs "${clone_path}/.tmux.conf" "${HOME}/.tmux.conf"
ln -fs "${clone_path}/.local/bin/"* "${HOME}/.local/bin/"
# And if you happen to be using WSL:
sudo ln -fs "${clone_path}/etc/wsl.conf" /etc/wsl.conf
-------------------------------------------------------------------------------
A potentially dangerous action is about to happen. The above files are going to
get forcefully symlinked.
What does that mean?
Any config files you have on the right hand side of the paths are going to get
overwritten with the files that come with my dotfiles (left side).
If you care about your original config files now would be the time to back
them up. They will ALL be overwritten if you say yes to the prompt below.
EOF
while true; do
read -rep $'\nReady to continue and apply the symlinks? (y) ' y
case "${y}" in
[Yy]*)
break
;;
*) echo "Please answer y or CTRL+c the script to abort everything" ;;
esac
done
ln -fs "${clone_path}/.zshenv" "${HOME}/.zshenv" &&
ln -fs "${clone_path}/.config/zsh/.zshrc" "${HOME}/.config/zsh/.zshrc" &&
ln -fs "${clone_path}/.config/zsh/.zprofile" "${HOME}/.config/zsh/.zprofile" &&
ln -fs "${clone_path}/.config/zsh/.aliases" "${HOME}/.config/zsh/.aliases" &&
ln -fs "${clone_path}/.gitconfig" "${HOME}/.gitconfig" &&
ln -fs "${clone_path}/.tmux.conf" "${HOME}/.tmux.conf" &&
ln -fs "${clone_path}/.local/bin/"* "${HOME}/.local/bin/"
if grep -qE "(Microsoft|microsoft|WSL)" /proc/version &>/dev/null; then
sudo ln -fs "${clone_path}/etc/wsl.conf" /etc/wsl.conf
fi
###############################################################################
# Change default shell to zsh
###############################################################################
[ "${os_type}" != "macOS" ] && chsh -s "$(command -v zsh)"
# shellcheck disable=SC1090
. "${HOME}/.config/zsh/.zprofile"
###############################################################################
# Install mise
###############################################################################
printf "\n\nInstalling latest mise...\n"
curl https://mise.run | sh
shell_name=${ZSH_VERSION:+zsh}${BASH_VERSION:+bash}
if type "${HOME}/.local/bin/mise" &> /dev/null; then
if [[ -t 0 ]]; then # terminal has stdin i.e. interactive
eval "$("${HOME}/.local/bin/mise" activate "$shell_name")"
else
eval "$("${HOME}/.local/bin/mise" activate --shims)"
fi
fi
mise settings exec_auto_install=false
mise settings experimental=true
mise settings fetch_remote_versions_timeout=60s
mise settings go_skip_checksum=true
mise settings http_timeout=60s
mise settings idiomatic_version_file=false
mise settings not_found_auto_install=false
mise settings task_run_auto_install=false
mise settings use_versions_host=false
export ASDF_HASHICORP_SKIP_VERIFY="true"
###############################################################################
# Install tmux plugins
###############################################################################
printf "\n\nInstalling tmux plugins...\n"
export TMUX_PLUGIN_MANAGER_PATH="${HOME}/.tmux/plugins"
"${HOME}/.tmux/plugins/tpm/bin/install_plugins"
###############################################################################
# Install rust-lang
###############################################################################
printf "\n\nInstalling rust-lang...\n"
export RUST_LANG_HOME="${HOME}/rust-lang"
export RUSTUP_HOME="${RUST_LANG_HOME}/.rustup"
export CARGO_HOME="${RUST_LANG_HOME}/.cargo"
export CARGO_BIN_HOME="${CARGO_HOME}/bin"
export RUST_LANG_COMPLETIONS_HOME="${RUST_LANG_HOME}/.zfunc"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path
mkdir -p "${RUST_LANG_COMPLETIONS_HOME}"
"${CARGO_BIN_HOME}/rustup" completions zsh >"${RUST_LANG_COMPLETIONS_HOME}/_rustup"
"${CARGO_BIN_HOME}/rustup" completions zsh cargo >"${RUST_LANG_COMPLETIONS_HOME}/_cargo"
###############################################################################
# Install usage, it is needed to use mise completion
###############################################################################
printf "\n\nInstalling usage binary...\n"
mise use -g usage@latest
###############################################################################
# Install cosign and slsa-verifier binaries, needed to verify checksum for aqua packages
###############################################################################
printf "\n\nInstalling cosign and slsa-verifier binaries...\n"
mise use -g cosign@latest
mise use -g slsa-verifier@latest
###############################################################################
# Install latest jq and yq binaries
###############################################################################
printf "\n\nInstalling latest jq and yq binaries...\n"
mise use -g jq@latest
mise use -g yq@latest
###############################################################################
# Install latest aws binary
###############################################################################
printf "\n\nInstalling latest aws binary...\n"
mise use -g awscli@latest
###############################################################################
# Install latest terraform binary
###############################################################################
printf "\n\nInstalling latest terraform, terragrunt, tflint and terraform-docs binaries...\n"
mise use -g terraform@latest
mise use -g terragrunt@latest
mise use -g terraform-docs@latest
mise use -g tflint@latest
###############################################################################
# Install kubectl binary
###############################################################################
printf "\n\nInstalling kubectl binary...\n"
mise use -g [email protected]
###############################################################################
# Install eksctl binary
###############################################################################
printf "\n\nInstalling eksctl binary...\n"
mise use -g eksctl@latest
###############################################################################
# Install k9s binary
###############################################################################
printf "\n\nInstalling k9s binary...\n"
mise use -g k9s@latest
###############################################################################
# Install latest helm binary
###############################################################################
printf "\n\nInstalling helm binary...\n"
mise use -g helm@latest
###############################################################################
# Install latest argocd binary
###############################################################################
printf "\n\nInstalling latest argocd binary...\n"
mise use -g argocd@latest
###############################################################################
# Install latest docker-credential-ecr-login binary
###############################################################################
printf "\n\nInstalling latest docker-credential-ecr-login binary...\n"
mise use -g amazon-ecr-credential-helper@latest
###############################################################################
# Generate docker completion if docker command is available
###############################################################################
docker_cmd=$(command -v docker)
docker_dir="${HOME}/.docker"
completion_dir="${docker_dir}/completion"
completion_file="${completion_dir}/_docker"
if [ -n "$docker_cmd" ]; then
printf "Docker command found\n"
if [ -d "$docker_dir" ]; then
printf "%s directory found\n" "$docker_dir"
if [ ! -d "$completion_dir" ]; then
mkdir -p "$completion_dir"
printf "Created %s directory\n" "$completion_dir"
fi
docker completion zsh > "$completion_file"
printf "Docker zsh completion script has been generated at %s\n" "$completion_file"
else
printf "%s directory not found\n" "$docker_dir"
fi
else
printf "Docker command not found\n"
fi
###############################################################################
# Install latest go binary
###############################################################################
printf "\n\nInstalling latest go binary...\n"
mise use -g go@latest
###############################################################################
# Install latest java and maven binaries
###############################################################################
printf "\n\nInstalling latest java and maven binaries...\n"
mise plugins install maven https://github.com/mise-plugins/asdf-maven.git
mise use -g java@corretto-17
mise use -g maven@latest
###############################################################################
# Install node binaries (18,20)
###############################################################################
printf "\n\nInstalling node 18,20 binaries...\n"
mise use -g node@18
mise use -g node@20
###############################################################################
# Install pre-commit
###############################################################################
printf "\n\nInstalling pre-commit...\n"
mise use -g pre-commit@latest
###############################################################################
# Install 1password cli
###############################################################################
printf "\n\nInstalling 1password cli...\n"
mise plugins install 1password-cli https://github.com/NeoHsu/asdf-1password-cli.git
mise use -g 1password-cli@latest
###############################################################################
# Done!
###############################################################################
cat <<EOF
Everything was installed successfully!
You can safely close this terminal.
The next time you open your terminal zsh will be ready to go!
EOF
exit 0