Skip to content

Instantly share code, notes, and snippets.

@ihodes
Created August 15, 2013 17:00
Show Gist options
  • Save ihodes/6242515 to your computer and use it in GitHub Desktop.
Save ihodes/6242515 to your computer and use it in GitHub Desktop.
export PS1="\w ☞ "
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export EDITOR="emacs"
alias l="ls -aG"
alias ll="ls -alG"
alias ..="cd .."
alias k="kill"
alias e="emacs"
alias gs="git status"
alias gl="git log"
alias ga="git add"
alias gcm="git commit -m"
function take (dir) {
mkdir dir
cd dir
}
function fixd () {
export PS1="\W ☞ "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment