15 lines
218 B
Fish
15 lines
218 B
Fish
|
function ls
|
||
|
command exa --all \
|
||
|
--long \
|
||
|
--group-directories-first \
|
||
|
--tree \
|
||
|
--level=1 \
|
||
|
--header \
|
||
|
--icons \
|
||
|
--no-permissions \
|
||
|
--no-user \
|
||
|
--no-time \
|
||
|
--git \
|
||
|
$argv
|
||
|
end
|