-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
39 lines (34 loc) · 1.36 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
##############
# SHOW LOGOS #
##############
cd ~
clear
curl --silent -o- https://scripts.codesagas.dev/setup/logo.sh | bash
#######################
# START SETUP TOOLING #
#######################
curl --silent -o- https://scripts.codesagas.dev/setup/git.sh | bash
curl --silent -o- https://scripts.codesagas.dev/setup/zsh.sh | bash
curl --silent -o- https://scripts.codesagas.dev/setup/ohmyzsh.sh | zsh
curl --silent -o- https://scripts.codesagas.dev/setup/nvm.sh | zsh
curl --silent -o- https://scripts.codesagas.dev/setup/java.sh | zsh
curl --silent -o- https://scripts.codesagas.dev/setup/nvim.sh | zsh
zsh
source ~/.zshrc
##############
# NEXT STEPS #
##############
# Can I just run this?
echo "SOME THINGS TO DO..."
echo "*******************************************************"
echo "* ssh-keygen -t ed25519 -C \"[email protected]\" *"
echo "*******************************************************"
echo "*************************************************************"
echo "* cd ~ && git clone https://github.com/bcbrian/.scripts.git *"
echo "*************************************************************"
echo "**********************************"
echo "* open nvim and run plug install *"
echo "**********************************"
echo "***************************************"
echo "* setup nvim config file to load mine *"
echo "***************************************"