From 7410d390941630be699427c4cc57c146f16916ab Mon Sep 17 00:00:00 2001 From: giomba Date: Fri, 3 Nov 2023 20:52:06 +0100 Subject: [PATCH] Replace exa with eza for ls alias. --- zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zshrc b/zshrc index 503a563..c78c921 100644 --- a/zshrc +++ b/zshrc @@ -2577,9 +2577,9 @@ if check_com -c screen ; then fi fi -# do we have exa? -if command -v exa &> /dev/null ; then - alias ls='command exa' +# do we have eza? +if command -v eza &> /dev/null ; then + alias ls='command eza' fi alias l='ls -lg'