diff options
author | James Rowe <jnrowe@gmail.com> | 2010-05-09 22:23:11 +0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2010-06-05 23:22:57 +0800 |
commit | f9fbd079832637c192e35fe65532495a37a3e3d3 (patch) | |
tree | 353d7ac66899ae9540348719b1701e6cc7d99cc4 /lib | |
parent | edc8e3d092bc758fa9dd4f3472d2c6ec9d03b737 (diff) | |
download | zsh-f9fbd079832637c192e35fe65532495a37a3e3d3.tar.gz zsh-f9fbd079832637c192e35fe65532495a37a3e3d3.tar.bz2 zsh-f9fbd079832637c192e35fe65532495a37a3e3d3.zip |
Don't display dotfiles or reverse sort with ll alias.
The ll alias is a very common default for bash in Linux distributions, so use
that definition.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/aliases.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/aliases.zsh b/lib/aliases.zsh index 89c904a7e..80760a1f5 100644 --- a/lib/aliases.zsh +++ b/lib/aliases.zsh @@ -18,7 +18,7 @@ alias history='fc -l 1' # List direcory contents alias lsa='ls -lah' alias l='ls -la' -alias ll='ls -alr' +alias ll='ls -l' alias sl=ls # often screw this up alias afind='ack-grep -il' |