summaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
Diffstat (limited to '.bash_profile')
-rwxr-xr-x.bash_profile15
1 files changed, 15 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile
new file mode 100755
index 0000000..2f4c170
--- /dev/null
+++ b/.bash_profile
@@ -0,0 +1,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"