-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·69 lines (40 loc) · 1.31 KB
/
run.sh
File metadata and controls
executable file
·69 lines (40 loc) · 1.31 KB
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
X_COLOR="\u001b[36m"
COLOR_RESET='\u001b[0m'
echo ">>>> ${X_COLOR} Initiating environment configuration ${COLOR_RESET}"
OS_ID=$(grep '^ID=' /etc/os-release | cut -d'=' -f2 | tr -d '"')
######################## ZSH
source cli/configure_ZSH.sh
### Editors
source ./editors/emacs.sh
source ./editors/install-helix.sh
source ./editors/configure-nvim.sh
######################### Browsers
### EDGE
# https://www.microsoft.com/en-us/edge/business/download?form=MA13FJ
######################### ATLASSIAN
source atlas-b/sdk.sh
######################### Docker
source docker.sh
######################### CLOUD-NATIVE
echo ">>> \u001b[36minstalling Cloud tools\u001b[0m"
source cloud-native/pack=cli.sh
######################## JAVA
source tools/sdkman.sh
#source frame/helidon-cli.sh
####################### Python
source tools/pyenv.sh
####################### NodeJS
source tools/nvm_nodejs.sh
####################### PLs
echo "\u001b[35m>>> installing PLs\u001b[0m"
source lang/cpp.sh
source lang/lua.sh
source lang/rust.sh
####################### HTTP
echo ">>> installing HTTP tools\u001b[0m"
source net/http-tools.sh
####################### Fonts
source fira-code-font.sh
####################### END
echo "#######################################################"
echo ">>>> \u001b[32mFinished installation!\u001b[0m"