aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-12-06 21:02:02 +0900
committernsfisis <nsfisis@gmail.com>2021-12-06 21:02:02 +0900
commit031ed01a3213eabd6a92258d9d1e66ef57221f13 (patch)
tree91df8995146bd63cb13cd9b8367ceb5efb5b6c48
parent2912c4eeee7fd83ada1a4fed1a23e9dff520b874 (diff)
downloaddotfiles-031ed01a3213eabd6a92258d9d1e66ef57221f13.tar.gz
dotfiles-031ed01a3213eabd6a92258d9d1e66ef57221f13.tar.zst
dotfiles-031ed01a3213eabd6a92258d9d1e66ef57221f13.zip
zsh: add --color=always to ls
-rw-r--r--.zshrc10
1 files changed, 5 insertions, 5 deletions
diff --git a/.zshrc b/.zshrc
index 0b25659..a3d15ca 100644
--- a/.zshrc
+++ b/.zshrc
@@ -410,11 +410,11 @@ if [[ "$(uname)" == "Darwin" ]]; then
alias lsal='ls -G -al'
alias lsla='ls -G -al'
else
- alias ls='ls --color=none'
- alias lsa='ls --color=none -a'
- alias lsl='ls --color=none -l'
- alias lsal='ls --color=none -al'
- alias lsla='ls --color=none -al'
+ alias ls='ls --color=always'
+ alias lsa='ls --color=always -a'
+ alias lsl='ls --color=always -l'
+ alias lsal='ls --color=always -al'
+ alias lsla='ls --color=always -al'
fi