Created
November 15, 2022 13:22
-
-
Save GianpaMX/076098634b7d7c6b2be09da0deb25123 to your computer and use it in GitHub Desktop.
This file contains 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 BASH_SILENCE_DEPRECATION_WARNING=1 | |
export CLICOLOR=1 | |
export PATH="/usr/local/sbin:$PATH" | |
export PATH="~/bin:$PATH" | |
export PATH="/usr/local/opt/openjdk@11/bin:$PATH" | |
export ANDROID_SDK_ROOT="/Users/juan/Library/Android/sdk" | |
export ANDROID_HOME="/Users/juan/Library/Android/sdk" | |
export PATH="${PATH}:$ANDROID_HOME/platform-tools" | |
export PATH="${PATH}:$ANDROID_HOME/tools/bin" | |
export PATH="${PATH}:$ANDROID_HOME/tools" | |
source ~/.git-prompt.sh | |
#source ~/.adb-ip-address.sh | |
export PATH="$HOME/.jenv/bin:$PATH" | |
if which jenv > /dev/null; then | |
eval "$(jenv init -)"; | |
fi | |
# qt5 | |
#export PATH="/usr/local/opt/qt@5/bin:$PATH" | |
export LDFLAGS="-L/usr/local/opt/qt@5/lib" | |
export CPPFLAGS="-I/usr/local/opt/qt@5/include" | |
export PKG_CONFIG_PATH="/usr/local/opt/qt@5/lib/pkgconfig" | |
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
if command -v pyenv 1>/dev/null 2>&1; then | |
eval "$(pyenv init -)" | |
fi | |
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi | |
# Added by Toolbox App | |
export PATH="$PATH:/usr/local/bin" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment