configs  ls.fish at [831ff3f6e3]

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


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