aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-05-21 15:40:39 +0900
committernsfisis <nsfisis@gmail.com>2022-05-21 15:40:39 +0900
commit83026f4c41a5fc3f712ba2e14eb9236ade1aeb9d (patch)
tree1d8937b1ec26380d00b92c22ac00a70f0879c783
parent64e5a4b605f9a2711887aae25ab3ad6f3800b9d9 (diff)
downloaddotfiles-83026f4c41a5fc3f712ba2e14eb9236ade1aeb9d.tar.gz
dotfiles-83026f4c41a5fc3f712ba2e14eb9236ade1aeb9d.tar.zst
dotfiles-83026f4c41a5fc3f712ba2e14eb9236ade1aeb9d.zip
zsh: update alias of ls
-rw-r--r--.zshrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/.zshrc b/.zshrc
index eafcfa5..964a2f5 100644
--- a/.zshrc
+++ b/.zshrc
@@ -406,15 +406,15 @@ fi
if [[ "$(uname)" == "Darwin" ]]; then
alias ls='ls -G'
alias lsa='ls -G -a'
- alias lsl='ls -G -l'
+ alias ll='ls -G -l'
alias lsal='ls -G -al'
- alias lsla='ls -G -al'
+ alias lla='ls -G -al'
else
alias ls='ls --color=always'
alias lsa='ls --color=always -a'
- alias lsl='ls --color=always -l'
+ alias ll='ls --color=always -l'
alias lsal='ls --color=always -al'
- alias lsla='ls --color=always -al'
+ alias lla='ls --color=always -al'
fi
if [[ "$(uname)" == "Darwin" ]]; then