From d54841dc9e7d89d66d7a4eea1ec8aa7bedddbdf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20P=C5=82azie=C5=84ski?= Date: Wed, 4 Sep 2024 12:19:07 +0200 Subject: [PATCH] Make ls alias compatible with exa --- zsh.d/50_listings.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zsh.d/50_listings.zsh b/zsh.d/50_listings.zsh index e53b4bf..c46da1a 100644 --- a/zsh.d/50_listings.zsh +++ b/zsh.d/50_listings.zsh @@ -5,6 +5,8 @@ if command-exists dircolors; then fi if command-exists eza; then alias ls='eza --git --long --all --time-style long-iso' +elif command-exists exa; then + alias ls='exa --git --long --all --time-style long-iso' else LSOPTS="-lAvF --color=auto" # long mode, show all, natural sort, type squiggles, friendly sizes alias ls="ls $LSOPTS"