zsh/exa.zsh

11 lines
232 B
Bash
Raw Normal View History

alias exa='exa -Fhg@ --git --time-style long-iso'
alias exal='exa -l'
function exat() {
[[ "$1" != <-> ]] && { echo "Usage: exat <depth> [path]"; exit 1 };
depth="$1";
shift;
exa -T -L $depth $@;
}
alias e='exa -l'