Skip to content

Instantly share code, notes, and snippets.

@npero
npero / CSS
Created July 11, 2012 21:21 — forked from asbarron/CSS
Floating divs to auto shrink to text size
a:link { color:white }
img {
height:600px;
width:300px;
position: relative;
}
ul {
list-style-type: none;
padding:0;
}
@npero
npero / .bashrc
Created January 27, 2012 11:50 — forked from ralfebert/.bashrc
git settings
# Prompt
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\[\033[31;38m\]\u@\h\[\033[00m\]:\[\033[31;38m\]\w\[\033[1;31m\]\$(parse_git_branch)\[\033[00m\] "
# Editor
export GIT_EDITOR='nano -Y patch'