Skip to content

Instantly share code, notes, and snippets.

@leandrowd
leandrowd / .bash_profile
Created May 31, 2012 14:31
.bash_profile configs
export GREP_OPTIONS="--color=auto"
export GREP_COLOR="4;33"
export CLICOLOR="auto"
source ~/git-completion.bash
alias gco='git co'
alias gci='git ci'
alias grb='git rb'
@leandrowd
leandrowd / .bashrc
Created May 31, 2012 14:26
.bashrc configs
function git_branch_name() {
git branch 2>/dev/null | grep -e '^*' | sed -E 's/^\* (.+)$/(\1) /'
}
function show_colored_git_branch_in_prompt() {
PS1="\[\033[01;32m\]\u@\h:\[\033[01;34m\]\w\[\033[31m\]\$(git_branch_name)\[\033[m\]$ "
}
#export ps1 to bash colors
show_colored_git_branch_in_prompt