-
Notifications
You must be signed in to change notification settings - Fork 14
/
install.sh
executable file
·59 lines (50 loc) · 1.03 KB
/
install.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
#!/usr/bin/env sh
set -e
# Some checks to see if we are running in dev containers
if [ -n "${CODESPACES}" ]; then
export RUNNING_IN_DEV_CONTAINER=1
fi
if [ -n "${RUNNING_IN_DEV_CONTAINER}" ]; then
echo "🏃 Running in dev container"
fi
###
# Installation
###
./omz/install.sh
./zsh/install.sh
./git/install.sh
###
# Applications (Only when not in a dev container)
###
if [ -z "${RUNNING_IN_DEV_CONTAINER}" ]; then
./brew/install.sh
./vscode/install.sh
./zed/install.sh
fi
###
# Application configurations (Only when not in a dev container)
###
if [ -z "${RUNNING_IN_DEV_CONTAINER}" ]; then
./github/install.sh
./node/install.sh
./mongodb/install.sh
./k9s/install.sh
./starship/install.sh
./tmux/install.sh
./neovim/install.sh
fi
###
# Deprecated
###
#./sublime-text/install.sh
#./php/install.sh
#./vim/install.sh
###
# Manual notifications
###
echo "🚀 Manual installation/updates"
echo "Omz: omz update"
echo ""
echo "🚀 Suggestions to tidy"
echo "- Old node versions: nvm list"
echo "- ~/Library/Appliation Support"