From 92f35ccd337146378930eb68cf672e2ca34c9dcf Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Wed, 31 Jul 2024 09:16:08 +0200 Subject: [PATCH] feat: switch to eza --- dot_config/zsh/03-aliases.zsh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dot_config/zsh/03-aliases.zsh b/dot_config/zsh/03-aliases.zsh index 78072b8..b46267b 100644 --- a/dot_config/zsh/03-aliases.zsh +++ b/dot_config/zsh/03-aliases.zsh @@ -7,8 +7,9 @@ alias edit='nvim' alias cat='bat' alias grep='grep --color=always' alias lsd='lsd -lh' -alias ls=lsd -alias tree='exa -lh --tree --git' +alias ls=eza +alias ll='eza -l' +alias tree='eza -lh --tree --git' alias df=duf alias ytv='youtube-viewer --video-player=mplayer -novideo' alias ytdlm="youtube-dl --extract-audio --audio-format flac" @@ -17,4 +18,4 @@ alias srm='shred -zvu -n 5' if [ -d $HOME/.dotnet/dotnet ]; then alias dotnet="$HOME/.dotnet/dotnet" -fi \ No newline at end of file +fi