mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[zsh] Fix ls on macOS
This commit is contained in:
parent
c4e5eba65a
commit
9d05d65759
1 changed files with 8 additions and 0 deletions
|
@ -1 +1,9 @@
|
||||||
alias welcome="welcome --extra-logos-dir $K_ZSH_DOTFILES/../script-resources/welcome/logos"
|
alias welcome="welcome --extra-logos-dir $K_ZSH_DOTFILES/../script-resources/welcome/logos"
|
||||||
|
|
||||||
|
if (( _is_macos )); then
|
||||||
|
if command_exists exa; then
|
||||||
|
alias ls="exa --classify --group-directories-first"
|
||||||
|
else
|
||||||
|
alias ls="ls --group-directories-first --color=auto"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue