From 19a1a6c329d383c7f2b18349a0f394430536542b Mon Sep 17 00:00:00 2001 From: Martin Sekera Date: Mon, 11 Sep 2023 08:09:34 +0200 Subject: [PATCH] zshrc: migrate exa -> eza --- etc/zsh/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 3f168f6..6d2ee94 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -5,9 +5,9 @@ bindkey -e # emacs mode alias ls="ls --classify --color --group-directories-first --quoting-style=literal" -which exa > /dev/null +which eza > /dev/null if [[ $? -eq 0 ]]; then - alias l="exa --group --long --git --group-directories-first --extended --binary" + alias l="eza --group --long --git --group-directories-first --extended --binary" alias ll="l --all" alias lt="l --tree"