# Make my prompt acceptable PS1='\[\e[0;31m\]\u\[\e[0;37m\]@\[\e[0;33m\]\h\[\e[0;36m\](\W)\[\e[0;0m\]\$ ' TERM=rxvt # Aliases alias irc="nice -n 19 irssi -c" alias rg="mutt -f ~/mail/roller_girls" alias tc="mutt -f ~/mail/sports" alias sent="mutt -f ~/mail/Sent" alias si="screen -d i >/dev/null; screen -r i" # Functions function fwd { cd "`pwd -P`" } # Exporting export PS1 TERM # Fix all the broken terminals of the world if [ `uname | head -c 9` == "CYGWIN_NT" ]; then # This worked before Cygwin "fixed" its broken terminal # stty intr ^c susp ^z start ^q stop ^s quit ^\\ erase ^? 2>/dev/null alias vim="vim -T rxvt-cygwin-native" else stty sane 2>/dev/null fi