dotfiles/.config/fish/functions/ls.fish
2022-07-17 10:19:21 -04:00

14 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