]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/30_aliases
more alias works
[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'       # no spelling correction on mv
15 alias cp='nocorrect cp'       # no spelling correction on cp
16 alias mkdir='nocorrect mkdir' # no spelling correction on mkdir
17 alias find='noglob find'      # no globbing for find
18
19 alias grep=egrep
20
21 alias ls='ls -bCF --color=auto'
22 alias ll='ls -l'
23 alias la='ls -a'
24 alias lla='ls -la'
25 # List only directories and symbolic links that point to directories
26 alias lsd='ls -ld *(-/DN)'
27
28 alias cal='cal -3'
29 alias ftp=lftp
30
31 alias mbug='bts show --mbox'
32 alias bug='BROWSER=www-browser bts show'
33
34 # vim:ft=zsh