Created
November 9, 2011 16:03
-
-
Save gertrudster/1351897 to your computer and use it in GitHub Desktop.
.zshrc aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case $OSTYPE in | |
darwin*) | |
alias ls="ls -G" | |
alias here="open ." | |
;; | |
linux*) | |
alias ls="ls --color" | |
alias free="free -m" | |
;; | |
esac | |
alias l='ls' | |
alias la="ls -A" | |
alias ll="ls -l" | |
alias lla="ls -lA" | |
alias du="du -H" | |
alias df="df -H" | |
alias j="jobs -l" | |
alias grep='grep --color -i' | |
alias -g L='| less' | |
alias -g G='| grep' | |
alias irb="irb --simple-prompt" | |
alias less="less -Mx2" | |
alias be="bundle exec" | |
alias e="emacs" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment