zsh: remove listing of git status with exa

The git status information makes `exa` choke a bit in very large
repositories, which I have been navigating a lot lately.
This commit is contained in:
Fernando Schauenburg 2023-01-26 22:08:54 +01:00
parent 3bd5c8251b
commit 2a16007dfa

View file

@ -3,7 +3,7 @@
if command -v exa >/dev/null 2>&1; then
# Prefer exa if installed
alias \
ls="exa -F --git --group-directories-first --group --links" \
ls="exa -F --group-directories-first --group --links" \
la="ls -a" \
lt="ls -lT -I'.git'" \
lta="lt -a" \