From c65418943017e0ef67752722fdc2db140bfe561f Mon Sep 17 00:00:00 2001 From: cabbbyy Date: Sat, 9 Aug 2025 23:55:44 +0800 Subject: [PATCH] changed -a to -A, i don't like the look of . and .. --- .zshrc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index d0424b5..acaf9d9 100644 --- a/.zshrc +++ b/.zshrc @@ -23,10 +23,9 @@ _comp_options+=(globdots) # Include hidden files. # color alias alias grep='grep --color=auto' alias diff='diff --color=auto' -alias ls='lsd' -alias la='lsd -a' +alias ls='lsd -A' alias lls='lsd -l' -alias lla='lsd -la' +alias lla='lsd -lA' alias cp='cp -i' alias rm='rm -i' alias df='df -h'