zshrc: fix: Use ll for llt

This commit is contained in:
PorridgePi
2022-09-29 05:03:40 +01:00
parent f68dfd8738
commit 88176cdd3e

2
.zshrc
View File

@@ -66,7 +66,7 @@ alias la='lsd --color auto -A'
alias ll='lsd --color auto -laF' alias ll='lsd --color auto -laF'
function lst { ls --tree --depth ${1:-2} } function lst { ls --tree --depth ${1:-2} }
function lat { la --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 # Docker Compose
alias dc='docker-compose' alias dc='docker-compose'