Please bear with us as we work to restore functionality to dotfiles.org.
Sets some aliases, fixes my path, and does some fun stuff
export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/local/sbin:$PATH"
export EDITOR="mate -w"
export VISUAL="mate -w"
alias la="ls -la"
alias svnst='svn st --ignore-externals'
alias ll="la -lFH"
alias irb='irb --readline -r irb/completion'
alias top='top -ocpu'
alias df='df -kTh'
alias sshme='ssh laundr.us'
alias igem='sudo gem install -y --no-rdoc --no-ri"
export PAGER="less"
export LESS='-fXemPm?f%f .?lbLine %lb?L of %L..:$' # Set options for less command
# enable bash completion in interactive shells
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
date
if [ -x /usr/games/fortune ]; then
/usr/games/fortune -s # makes our day a bit more fun.... :-)
fi