configs  ls.fish at [7563585cda]

File fish/functions/ls.fish artifact 1a3d96157e part of check-in 7563585cda


if type -q gls
    function ls --description 'List contents of directory'
        command gls --color=auto $argv
    end
else if command ls --color=auto &>/dev/null
    function ls --description 'List contents of directory'
        command ls --color=auto $argv
    end
end