zsh/exa.zsh
Tobias Schmidl cf1723db27 exa: add a new alias, "eg", that presents long grid view
Grid view conflicts with tree view
2019-02-22 12:59:54 +01:00

12 lines
268 B
Bash

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;
exal -T -L $depth $@;
}
alias e='exa -l'
alias eg='exa -Gl'
alias et='exat'