Browse Source

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.
James Rowe 14 years ago
parent
commit
f9fbd07983
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/aliases.zsh

+ 1 - 1
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'