-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
75 lines (43 loc) · 1.48 KB
/
run.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
X_COLOR="\u001b[36m"
COLOR_RESET='\u001b[0m'
echo ">>>> ${X_COLOR} Initiating environment configuration ${COLOR_RESET}"
echo ""
######################## CLI
source fish/configure_fish.sh
######################## ZSH
# source cli/configureZSH.sh
######################## Helix
######################## Neovim
#https://github.com/junegunn/vim-plug
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
######################### 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 frame/helidon-cli.sh
source tools/sdkman.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"