configs  ls.fish at [b3e3f764fa]

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


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