# zshrc/30_aliases # # Defines command shortcuts # # Copyright © 1994–2008 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # # Source repository: http://git.madduck.net/v/etc/zsh.git # alias -g ...=../.. alias -g ....=../../.. alias mv='nocorrect mv' # no spelling correction on mv alias cp='nocorrect cp' # no spelling correction on cp alias mkdir='nocorrect mkdir' # no spelling correction on mkdir alias find='noglob find' # no globbing for find alias grep=egrep alias ls='ls -bCF --color=auto' alias ll='ls -l' alias la='ls -a' alias lla='ls -la' # List only directories and symbolic links that point to directories alias lsd='ls -ld *(-/DN)' alias lsbig="ls -flh *(.OL[1,10])" alias lssmall="ls -Srl *(.oL[1,10])" alias lsnew="ls -rl *(D.om[1,10])" alias lsold="ls -rtlh *(D.om[1,10])" alias cal='cal -3' alias ftp=lftp alias mbug='bts show --mbox' alias bug='BROWSER=www-browser bts show' # handy documentation lookup on Debian # from http://www.michael-prokop.at/computer/config/.zshrc doc() { cd /usr/share/doc/$1 && ls } _doc() { _files -W /usr/share/doc -/ } compdef _doc doc # vim:ft=zsh