Don't pass -C to ls in alias.

This commit is contained in:
David Tomaschik
2023-05-26 10:18:42 -07:00
parent 670875f227
commit 691f64a477

View File

@@ -110,7 +110,7 @@ if [[ $- == *i* ]] ; then
source /usr/bin/virtualenvwrapper_lazy.sh source /usr/bin/virtualenvwrapper_lazy.sh
fi fi
if command ls --version >/dev/null 2>&1 ; then if command ls --version >/dev/null 2>&1 ; then
alias ls="$(whence -p ls) --color=auto -C" alias ls="$(whence -p ls) --color=auto"
fi fi
# Syntax highlighting and substring search # Syntax highlighting and substring search
if test -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ; then if test -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ; then