-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·44 lines (35 loc) · 1.07 KB
/
setup.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
#!/usr/bin/env bash
#
# setup.sh: run the workstation setup
#
# Fail immediately if any errors occur
set -e
echo "Caching password..."
sudo -K
sudo true;
clear
MY_DIR="$(dirname "$0")"
# force no analytics
export HOMEBREW_NO_ANALYTICS=1
# ensure rosetta is setup
softwareupdate --install-rosetta
# note: homebrew needs to be set up first
source ${MY_DIR}/scripts/core/homebrew.sh
# install everything else
source ${MY_DIR}/scripts/core/oh-my-zsh.sh
source ${MY_DIR}/scripts/core/git.sh
source ${MY_DIR}/scripts/core/configuration-osx.sh
source ${MY_DIR}/scripts/core/download-jetbrains-ide-prefs.sh
# tools
source ${MY_DIR}/scripts/tools/developer-utilities.sh
source ${MY_DIR}/scripts/tools/docker.sh
source ${MY_DIR}/scripts/tools/dotnet.sh
source ${MY_DIR}/scripts/tools/editors.sh
source ${MY_DIR}/scripts/tools/general.sh
source ${MY_DIR}/scripts/tools/node.sh
source ${MY_DIR}/scripts/tools/unix.sh
source ${MY_DIR}/scripts/tools/raycast.sh
# wrap up
source ${MY_DIR}/scripts/post/dock.sh
source ${MY_DIR}/scripts/post/finish.sh
source ${MY_DIR}/scripts/post/manual-steps.sh