Skip to content

Commit

Permalink
fix ls on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Partridge authored and partkyle committed May 18, 2012
1 parent 85ef6e9 commit 7faefcb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions system/aliases.zsh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
if $(gls &>/dev/null) if $(gls &>/dev/null)
then then
alias ls="gls -F --color" alias ls="gls -F --color"
alias l="gls -lAh --color" else
alias ll="gls -l --color" alias ls="ls -F --color"
alias la='gls -A --color' fi
fi alias l="ls -lAh --color"
alias ll="ls -l --color"
alias la='ls -A --color'

0 comments on commit 7faefcb

Please sign in to comment.