fish: wrap ls command

This commit is contained in:
Primrose 2026-01-18 22:24:42 +01:00
parent 0a34f6cc7d
commit 3133e11a96
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -0,0 +1,7 @@
function ls
if type -q lsr
command lsr $argv
else
command ls $argv
end
end