configs  ls.fish at [c22a3e608c]

File config/fish/functions/ls.fish artifact 27c83c809a part of check-in c22a3e608c


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