From 92a74dda2b33350490806adc8303642d6c19a954 Mon Sep 17 00:00:00 2001 From: PorridgePi Date: Thu, 29 Sep 2022 03:15:16 +0100 Subject: [PATCH] zshrc: feat: Add ls tree functions --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index eb41dcc..4a74980 100644 --- a/.zshrc +++ b/.zshrc @@ -64,6 +64,9 @@ alias pip='pip3' alias ls='lsd --color auto' 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} } # Docker Compose alias dc='docker-compose'