tangled
alpha
login
or
join now
karei.dev
/
unix-config
Configuration files
0
fork
atom
overview
issues
pulls
pipelines
zsh: only alias `ls` if an alternative is available
karei.dev
5 months ago
cc93ee07
d58e42ae
options
unified
split
Changed files
+5
-2
.zshrc
+5
-2
.zshrc
···
66
66
alias gc="git commit"
67
67
alias lzg=lazygit
68
68
69
69
-
70
70
-
alias ls="lsd"
69
69
+
if [ -x "$(which lsr)" ]; then
70
70
+
alias ls="lsr"
71
71
+
elif [ -x "$(which lsd)" ]; then
72
72
+
alias ls="lsd"
73
73
+
fi
71
74
alias l="ls -la"
72
75
alias la="ls -lA"