From 23258b688f1657657e78abef8247f2acbc791cd9 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 11 Oct 2021 18:47:59 -0700 Subject: [PATCH] zsh: fixes problem with lsd command check --- .zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index 3f49331..cf7ca19 100644 --- a/.zshrc +++ b/.zshrc @@ -92,9 +92,9 @@ pacman="pacman --color=auto" \ paru="paru --color=auto --sudoloop --newsonupgrade --pgpfetch --upgrademenu --bottomup --skipreview" \ - alias lsd="lsd --group-dirs=first" - - command -v lsd > /dev/null && alias ls=lsd + command -v lsd > /dev/null && alias \ + ls=lsd \ + lsd="lsd --group-dirs=first" \ # <<< ## Mini short-hand scripts (ex: la = ls -a) >>>