]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/30_aliases
add ... and .... global aliases
[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 mv='nocorrect mv'       # no spelling correction on mv
12 alias cp='nocorrect cp'       # no spelling correction on cp
13 alias mkdir='nocorrect mkdir' # no spelling correction on mkdir
14 alias find='noglob find'      # no globbing for find
15
16 alias grep=egrep
17
18 alias ls='ls --color=auto'
19 alias ll='ls -l'
20 alias la='ls -a'
21 alias lla='ls -la'
22 # List only directories and symbolic links that point to directories
23 alias lsd='ls -ld *(-/DN)'
24
25 alias -g ...=../..
26 alias -g ....=../../..
27
28 # vim:ft=zsh