9 lines
264 B
Bash
9 lines
264 B
Bash
|
#!/bin/zsh
|
||
|
# uses exa in detail mode
|
||
|
alias l="exa -l --git --git-ignore"
|
||
|
# shows hidden files
|
||
|
alias L="exa -hal --grid --git"
|
||
|
# a recursive tree - usually want to change levels recused with -L2 -L3 or similar
|
||
|
alias ll="exa --tree -L2"
|
||
|
alias LL="exa -a --tree -L2"
|