Created
May 9, 2018 08:53
-
-
Save nopedev/9535c4e6be0f282085a1aa157299e058 to your computer and use it in GitHub Desktop.
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
#.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