Add paths for fish

This commit is contained in:
ViViDboarder 2015-06-05 12:16:12 -07:00
parent b91d29c4f0
commit 780920827e
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
set det_os "unknown"
switch (uname)
case "Darwin"
set det_os "mac"
case "Linux"
set det_os "linux"
case '*'
set det_os "unknown"
end
# opt directory
set -gx PATH /opt/local/bin /opt/local/sbin $PATH
# Android SDK
if [ $det_os == "linux" ]
set android_sdk $HOME/workspace/adt-bundle-linux/sdk
set -gx GOROOT /usr/local/go
set -gx PATH $PATH $GOROOT/bin
else if [ $det_os == "mac" ]
set android_sdk $HOME/workspace/android-sdk-macosx
# set PATH $HOME/Library/Python/2.7/bin $PATH
end
set -gx ANDROID_HOME $android_sdk
set -gx PATH $PATH $android_sdk/platform-tools $android_sdk/tools
export PATH $HOME/bin $PATH
#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
# Increase memory sizes for java using Ant
set -gx ANT_OPTS "-Xmx2048m -Xms512m"