]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/30_aliases

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

POSIX collation for ls
[etc/zsh.git] / .zsh / zshrc / 30_aliases
1 # zshrc/30_aliases
2 #
3 # Defines command shortcuts
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 alias -g ...=../..
12 alias -g ....=../../..
13
14 alias mv='nocorrect mv'
15 alias cp='nocorrect cp'
16 alias mkdir='nocorrect mkdir'
17 alias find='noglob find'
18 alias w3m='noglob w3m'
19 alias links='noglob links'
20 alias wb='noglob www-browser'
21
22 _LS_OPTS='-bCF --color=auto'
23 ls --group-directories-first >/dev/null 2>&1 \
24   && _LS_OPTS="$_LS_OPTS --group-directories-first"
25 # I prefer POSIX collation for ls
26 alias ls="LC_COLLATE=POSIX ls $_LS_OPTS"
27 unset _LS_OPTS
28
29 alias ll='ls -l'
30 alias la='ls -a'
31 alias lla='ls -la'
32 # List only directories and symbolic links that point to directories
33 alias lsd='ls -ld *(-/DN)'
34
35 alias lsbig="ls -flh *(.OL[1,10])"
36 alias lssmall="ls -Srl *(.oL[1,10])"
37 alias lsnew="ls -rl *(D.om[1,10])"
38 alias lsold="ls -rtlh *(D.om[1,10])"
39
40 alias egrep='egrep --color=auto -d skip'
41 alias fgrep='fgrep --color=auto -d skip'
42 alias grep='grep --color=auto -d skip'
43
44 alias mmv='noglob zmv -W'
45 alias zcp=zmv
46 alias zln=zmv
47
48 alias cal='cal -3'
49 alias ftp=lftp
50
51 alias mbug='bts show --mbox'
52 alias bug='BROWSER=www-browser bts show'
53
54 # handy documentation lookup on Debian
55 # from http://www.michael-prokop.at/computer/config/.zshrc
56 doc() { cd /usr/share/doc/$1 && ls }
57 _doc() { _files -W /usr/share/doc -/ }
58 compdef _doc doc
59
60 # vim:ft=zsh