Skip to content

Instantly share code, notes, and snippets.

@mehmetkose
Last active June 25, 2017 12:53
Show Gist options
  • Save mehmetkose/66e176b27c4ea0867970089aba5b4b10 to your computer and use it in GitHub Desktop.
Save mehmetkose/66e176b27c4ea0867970089aba5b4b10 to your computer and use it in GitHub Desktop.
macos .bash_profile
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
if [ -f ~/.bash_profile ]; then
source ~/.bash_profile
fi
alias ll='ls -lGaf'
#alias python='python3'
export ANDROID_HOME=/usr/local/opt/android-sdk
export PATH=${PATH}:${ANDROID_HOME}/tools
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
export GOPATH=$HOME/go
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
export WORKON_HOME=~/virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment