zsh/exa.zsh
Tobias Schmidl e96ed74216 Added aliases for exa
See the [corresponding github repository](https://github.com/ogham/exa).
2018-12-08 05:31:18 +01:00

10 lines
232 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;
exa -T -L $depth $@;
}
alias e='exa -l'