zsh/exa.zsh
2021-12-11 11:49:53 +01:00

15 lines
301 B
Bash

#! /bin/zsh
alias exa='exa -FHhg@ --git --time-style long-iso'
alias exal='exa -l'
function exat() {
[[ "$1" != <-> ]] && { echo "Usage: exat <depth> [path]"; exit 1 };
depth="$1";
shift;
exal -T -L $depth $@;
}
alias e='exa -l'
alias ea='exa -la'
alias eg='exa -Gl'
alias et='exat'