From 88176cdd3e489f92bc268769819c35a64458c776 Mon Sep 17 00:00:00 2001 From: PorridgePi Date: Thu, 29 Sep 2022 05:03:40 +0100 Subject: [PATCH] zshrc: fix: Use ll for llt --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 448912b..5b638d0 100644 --- a/.zshrc +++ b/.zshrc @@ -66,7 +66,7 @@ alias la='lsd --color auto -A' alias ll='lsd --color auto -laF' function lst { ls --tree --depth ${1:-2} } function lat { la --tree --depth ${1:-2} } -function llt { la --tree --depth ${1:-2} } +function llt { ll --tree --depth ${1:-2} } # Docker Compose alias dc='docker-compose'