Movint to Fish + Tide

This commit is contained in:
Rodolphe Bréard 2025-03-02 14:26:08 +01:00
parent 4b08537918
commit ae7e402728
Signed by: rodolphe
SSH key fingerprint: SHA256:3rodCKnk1MUOfSlIKY0nHbBtvFyQx4EqjS+JIy69lN0
28 changed files with 167 additions and 326 deletions

View file

@ -0,0 +1,11 @@
function ls
if type -q eza
command eza $argv
else
if test "$(uname -s | tr '[:upper:]' '[:lower:]')" = 'linux'
command ls --color=auto $argv
else
command ls $argv
end
end
end