diff options
author | Gerhard Lazu <mail@gerhardlazu.com> | 2009-10-12 07:56:55 +0100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2009-10-26 09:09:14 -0700 |
commit | 552e4b864a09ff25e8ef1cad169dae193201f214 (patch) | |
tree | daba4873efef47da163f94bdb72d0c06379e1152 /lib | |
parent | 52f5eb20058796f3f4673b07c0f2c0463ed817b8 (diff) | |
download | zsh-552e4b864a09ff25e8ef1cad169dae193201f214.tar.gz zsh-552e4b864a09ff25e8ef1cad169dae193201f214.tar.bz2 zsh-552e4b864a09ff25e8ef1cad169dae193201f214.zip |
ll doesn't show hidden files, lsa does
Diffstat (limited to 'lib')
-rw-r--r-- | lib/aliases.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/aliases.zsh b/lib/aliases.zsh index 69f2eee15..d340c08ae 100644 --- a/lib/aliases.zsh +++ b/lib/aliases.zsh @@ -39,6 +39,7 @@ alias gcp='git cherry-pick' alias history='fc -l 1' alias ls='ls -F' +alias lsa='ls -lah' alias ll='ls -alr' alias l='ls' alias ll='ls -l' |