From 3f1a1c1375b29c2e9b8d64588697ee7b0d1c3b5d Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Sun, 17 Nov 2024 10:26:52 -0500 Subject: [PATCH] Addition of alias for `la` Added an alias for `la` to make sure it is available on all systems. --- zsh/dot-zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index e089f19..d7f09d5 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -8,6 +8,9 @@ alias btm="btm --theme=gruvbox" # Remap ls to use lsd alias ls="lsd" +# Add alias for la to call lsd -lah +alias la="lsd -lah" + # Replace cat with bat alias cat="bat"