Skip to content

Instantly share code, notes, and snippets.

@nikolawannabe
Created October 17, 2011 01:35
Show Gist options
  • Save nikolawannabe/1291723 to your computer and use it in GitHub Desktop.
Save nikolawannabe/1291723 to your computer and use it in GitHub Desktop.
Current bash_profile on OSX
# Setting PATH for MacPython 2.5
# The orginal version is saved in .bash_profile.pysave
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
export DEVKITPRO=~/devkitPro
export DEVKITARM=$DEVKITPRO/devkitARM
export PATH=$PATH:$DEVKITARM/bin
export PATH=$PATH:~/code/java/android-sdk-mac_x86/platform-tools
export PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:/Users/nikkie/Downloads/balnxxe:${PATH}"
export PATH=~/code/edge/androiddev/bin/:$PATH
export CLICOLOR=1
export LSCOLORS=gxFxCxDxBxegedabagacad
# set the number of open files to be 1024
ulimit -S -n 1024
export COLOR_NC='\e[0m' # No Color
export COLOR_WHITE='\e[1;37m'
export COLOR_BLACK='\e[0;30m'
export COLOR_BLUE='\e[0;34m'
export COLOR_LIGHT_BLUE='\e[1;34m'
export COLOR_GREEN='\e[0;32m'
export COLOR_LIGHT_GREEN='\e[1;32m'
export COLOR_CYAN='\e[0;36m'
export COLOR_LIGHT_CYAN='\e[1;36m'
export COLOR_RED='\e[0;31m'
export COLOR_LIGHT_RED='\e[1;31m'
export COLOR_PURPLE='\e[0;35m'
export COLOR_LIGHT_PURPLE='\e[1;35m'
export COLOR_BROWN='\e[0;33m'
export COLOR_YELLOW='\e[1;33m'
export COLOR_GRAY='\e[1;30m'
export COLOR_LIGHT_GRAY='\e[0;37m'
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
#export PS1="\[${COLOR_PURPLE}\]\u@${COLOR_LIGHT_CYAN}\h \[${COLOR_GREEN}\]\w > \[${COLOR_NC}\]"
export PS1="\[${COLOR_PURPLE}\]\u@${COLOR_LIGHT_CYAN}\h $(__git_ps1 " [%s]") \[${COLOR_GREEN}\]\w > \[${COLOR_NC}\]"
export SVN_EDITOR=vim
function mountAndroid { hdiutil attach ~/code/edge/android.dmg.sparseimage -mountpoint /Volumes/android; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment