Skip to content

Instantly share code, notes, and snippets.

@flaneur2020
Created October 24, 2011 02:07
Show Gist options
  • Save flaneur2020/1308227 to your computer and use it in GitHub Desktop.
Save flaneur2020/1308227 to your computer and use it in GitHub Desktop.
.bash_profile
function parse_git_branch () {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
RED="\[\033[0;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
NO_COLOUR="\[\033[0m\]"
PS1="$GREEN\u@machine$NO_COLOUR:\w$YELLOW\$(parse_git_branch)$NO_COLOUR\$ "
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
rvm use 1.9.2
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export QOR_ROOT=/Users/ssword/code/qor
alias be='bundle exec'
# ruby GC tuning.
export RUBY_HEAP_MIN_SLOTS=1500000
export RUBY_HEAP_SLOTS_INCREMENT=500000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=50000000
alias gvim='mvim'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment