summaryrefslogtreecommitdiff
path: root/.bash_profile
blob: 2f4c17056d88a1c152b34342a7f73d45bf87788d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Add various paths
export PATH="$PATH:usr/local/lib:$HOME/.cargo/bin:$HOME/.local/bin"

# Path for Android Development
export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools

[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

. "$HOME/.cargo/env"