Skip to content

Instantly share code, notes, and snippets.

@jonbalbarin
jonbalbarin / .screenrc
Created April 12, 2011 14:45
my screen rc
startup_message off
defscrollback 10000
altscreen on
bindkey -k F2 kill #f12
bindkey -k F1 detach #f11
hardstatus alwayslastline
hardstatus string "%{.K.}%D %M %d %C:%s%a | %-Lw%{.K.}%{= rW}%50>%n* %t%{-}%+Lw%<"
shell -bash
@jonbalbarin
jonbalbarin / bestbashpromptever.sh
Created April 12, 2011 14:30
best bash prompt ever
function parse_git_branch {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "("${ref#refs/heads/}")"
}
# PS1 prompt color vars
export PROMPT_DIRTRIM='2' #only works with bash 4.x
RED="\[\033[1;31m\]"
YELLOW="\[\033[0;33m\]"