Added aliases for exa
See the [corresponding github repository](https://github.com/ogham/exa).
This commit is contained in:
parent
fbeb24ed18
commit
e96ed74216
1 changed files with 10 additions and 0 deletions
10
exa.zsh
Normal file
10
exa.zsh
Normal 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'
|
Loading…
Reference in a new issue