Created
October 3, 2022 17:31
-
-
Save Senhordim/d471e5222ec83c9abf84a8dc9cb6fee7 to your computer and use it in GitHub Desktop.
Meu ZSHRC
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
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# FVM | |
export PATH="$PATH":"$HOME/fvm/default/bin" | |
export PATH="$PATH":"$HOME/bin/cache/dart-sdk/bin" | |
export PATH="$PATH":"$HOME/.pub-cache/bin" | |
# PHP | |
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
export PATH="/usr/local/opt/[email protected]/sbin:$PATH" | |
# Android | |
export ANDROID_HOME=/Users/$USER/Library/Android/sdk | |
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools | |
#JAVA_HOME | |
export JAVA_HOME=$(/usr/libexec/java_home) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment