Skip to content

Instantly share code, notes, and snippets.

@nopedev
Created May 9, 2018 08:53
Show Gist options
  • Save nopedev/9535c4e6be0f282085a1aa157299e058 to your computer and use it in GitHub Desktop.
Save nopedev/9535c4e6be0f282085a1aa157299e058 to your computer and use it in GitHub Desktop.
#.bash_profile
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# ==========
# ALIAS
# ==========
alias ll="ls -alv"
# ==========
# ANDROID
# ==========
export ANDROID_HOME=~/Library/Android/sdk
export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
# ==========
# NVM
# ==========
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# ==========
# PYENV
# ==========
eval "$(pyenv init -)"
# ==========
# PYENV VIRTUALENV
# ==========
eval "$(pyenv virtualenv-init -)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment