From 691f64a477f561d574028a419d124687e7102660 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 26 May 2023 10:18:42 -0700 Subject: [PATCH] Don't pass -C to ls in alias. --- dotfiles/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 2853db1..bfa1908 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -110,7 +110,7 @@ if [[ $- == *i* ]] ; then source /usr/bin/virtualenvwrapper_lazy.sh fi 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 # Syntax highlighting and substring search if test -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ; then