Added aliases for exa

See the [corresponding github repository](https://github.com/ogham/exa).
This commit is contained in:
Tobias Schmidl 2018-12-08 05:27:06 +01:00
parent fbeb24ed18
commit e96ed74216

10
exa.zsh Normal file
View file

@ -0,0 +1,10 @@
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'