Skip to content

Instantly share code, notes, and snippets.

@AraujoJordan
Last active June 10, 2020 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AraujoJordan/7e44a04dd006a2c195f3beb853946cae to your computer and use it in GitHub Desktop.
Save AraujoJordan/7e44a04dd006a2c195f3beb853946cae to your computer and use it in GitHub Desktop.
My Default MacOs Enviroment
#!/bin/bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update && brew upgrade && brew cleanup
#Codding Essentials
brew install git
git config --global user.name "Jordan L. Araujo Jr."
git config --global user.email "jordanjr.92@gmail.com"
brew install python3
brew install jq
echo "alias python=python3" >> ~/.bashrc
echo "alias pip=pip3" >> ~/.bashrc
brew tap adoptopenjdk/openjdk
brew cask install adoptopenjdk8
brew cask install kotlin-native
brew install wget
brew install node
# Programs/Apps
brew cask install firefox
brew cask install brave-browser
brew cask install transmission
brew cask install the-unarchiver
brew cask install microsoft-teams
brew install visual-studio-code
# Intellij Idea CE
brew cask install intellij-idea-ce
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/12275/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /usr/local/Caskroom/intellij-idea-ce/2020.1.2,201.7846.76/IntelliJ\ IDEA\ CE.app/Contents/plugins/
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/7380/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /usr/local/Caskroom/intellij-idea-ce/2020.1.2,201.7846.76/IntelliJ\ IDEA\ CE.app/Contents/plugins/
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/10044/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /usr/local/Caskroom/intellij-idea-ce/2020.1.2,201.7846.76/IntelliJ\ IDEA\ CE.app/Contents/plugins/
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/8097/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /usr/local/Caskroom/intellij-idea-ce/2020.1.2,201.7846.76/IntelliJ\ IDEA\ CE.app/Contents/plugins/
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/7973/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /usr/local/Caskroom/intellij-idea-ce/2020.1.2,201.7846.76/IntelliJ\ IDEA\ CE.app/Contents/plugins/
# React Native
brew install watchman
npm install -g expo-cli
npm install -g react-native-cli
#Extras
brew tap homebrew/cask-fonts
brew cask install font-fira-code
brew install youtube-dl
brew cask install spotify
brew cask install hubstaff
brew cask install grammarly
# Android
brew cask install android-platform-tools
brew cask install android-sdk
brew cask install android-studio
echo "export ANDROID_SDK_ROOT=/Users/$USER/Library/Android/sdk" >> ~/.bashrc
echo "export ANDROID_HOME=/Users/$USER/Library/Android/sdk" >> ~/.bashrc
echo "export ANDROID_NDK_HOME=/Users/$USER/Library/Android/ndk" >> ~/.bashrc
echo "export PATH=\"$ANDROID_SDK_ROOT/platform-tools:$ANDROID_SDK_ROOT/tools:$PATH\"" >> ~/.bashrc
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/12275/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /Applications/Android\ Studio.app/Contents/plugins
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/7380/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /Applications/Android\ Studio.app/Contents/plugins
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/10044/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /Applications/Android\ Studio.app/Contents/plugins
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/8097/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /Applications/Android\ Studio.app/Contents/plugins
wget -qO- "https://plugins.jetbrains.com/files/$(curl https://plugins.jetbrains.com/api/plugins/7973/updates | jq -r '.[0].file')" | bsdtar -xvf- -C /Applications/Android\ Studio.app/Contents/plugins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment