Last active
December 13, 2020 04:53
-
-
Save dimMaryanto93/4749c87ad654a44fde1a0916f5126343 to your computer and use it in GitHub Desktop.
Bash profile on macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) | |
export ANDROID_HOME=~/Library/Android/sdk | |
export PATH=$PATH:$ANDROID_HOME/emulator | |
export PATH=$PATH:$ANDROID_HOME/tools | |
export PATH=$PATH:$ANDROID_HOME/tools/bin | |
export PATH=$PATH:$ANDROID_HOME/platform-tools | |
export PATH=$PATH:$JAVA_HOME/bin | |
alias android-emulator='$ANDROID_HOME/emulator/emulator -avd Nexus_5X_API_30' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:set number | |
syntax on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZSH_THEME="robbyrussell" | |
plugins=( | |
git | |
github | |
pip | |
python | |
mvn | |
brew | |
osx | |
docker | |
docker-compose | |
docker-machine | |
minikube | |
gradle | |
kubectl | |
node | |
postgres | |
spring | |
) | |
fpath+=($ZSH/plugins/docker) | |
autoload -U compinit && compinit | |
source $ZSH/oh-my-zsh.sh | |
source ~/.bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment