From f0fdbcb23b32c9c8b1c9af568070c00755e4a92d Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 7 Sep 2023 16:13:12 +0100 Subject: [PATCH] Switch auto-ls command to use eza instead of exa --- zshrc.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc.zsh b/zshrc.zsh index e6887db..73bfaf0 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -66,7 +66,7 @@ source $HOME/.zsh/aliases.zsh auto-ls () { emulate -L zsh; - exa --oneline --long --classify --icons --header + eza --oneline --long --classify --icons --header } chpwd_functions=( auto-ls $chpwd_functions )