Created
July 1, 2011 14:59
-
-
Save corbanb/1058718 to your computer and use it in GitHub Desktop.
corbanb bash_profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ls="ls -aG" | |
source /usr/local/bin/virtualenvwrapper.sh | |
source ~/bin/.git_svn_profile | |
PATH=~/bin:$PATH | |
#NAVE and NODE JS | |
alias nave="~/local/nave/nave.sh" | |
alias lessc="~/code/less.js/bin/lessc" | |
#virtualenvs | |
export WORKON_HOME=~/.virtualenvs | |
#Textmate bundles | |
alias bundles="cd /Library/Application\ Support/TextMate/Bundles/" | |
#osascript -e 'tell app "TextMate" to reload bundles' | |
#custom profile helpers | |
alias profile="mate ~/bin/.custom_profile" | |
alias sprofile="source ~/bin/.custom_profile" | |
alias prompt="mate ~/bin/.git_svn_profile" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parse_git_branch() { | |
ref=$(git symbolic-ref -q HEAD 2> /dev/null) || return | |
printf "${1:-(%s)}" "${ref#refs/heads/}" | |
} | |
parse_svn_revision() { | |
local DIRTY REV=$(svn info 2>/dev/null | grep Revision | sed -e 's/Revision: //') | |
[ "$REV" ] || return | |
[ "$(svn st)" ] && DIRTY=' *' | |
echo "(r$REV$DIRTY)" | |
} | |
pimp_prompt() { | |
local BLUE="\[\033[0;34m\]" | |
local BLUE_BOLD="\[\033[1;34m\]" | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" | |
local GREEN="\[\033[0;32m\]" | |
local LIGHT_GREEN="\[\033[1;32m\]" | |
local WHITE="\[\033[0;37m\]" | |
local WHITE_BOLD="\[\033[1;37m\]" | |
local LIGHT_GRAY="\[\033[0;37m\]" | |
case $TERM in | |
xterm*) | |
TITLEBAR='\[\033]0;\u@\h:\w\007\]' | |
;; | |
*) | |
TITLEBAR="" | |
;; | |
esac | |
#PS1="${TITLEBAR}[$WHITE\u@$BLUE_BOLD\h$WHITE \w$GREEN\$(parse_git_branch)\$(parse_svn_revision) $RED\$(~/.rvm/bin/rvm-prompt v g)$WHITE]\$ " | |
PS1="${TITLEBAR}[$BLUE_BOLD\u$RED +$WHITE \W$GREEN\$(parse_git_branch)\$(parse_svn_revision)$WHITE]\$ " | |
PS2='> ' | |
PS4='+ ' | |
} | |
pimp_prompt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment