zsh/exa.zsh

14 lines
288 B
Bash
Raw Normal View History

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;
2019-01-09 15:51:05 +01:00
exal -T -L $depth $@;
}
alias e='exa -l'
alias ea='exa -la'
alias eg='exa -Gl'
2019-01-09 15:51:05 +01:00
alias et='exat'