configs  ls.fish at 831ff3f6e35af23db8e1f8d85c7e2afc93526d0cce9a1d2196967fbac25676da

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


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