configs  ls.fish at [01a7f7a67b]

File config/fish/functions/ls.fish artifact 98d8040878 part of check-in 01a7f7a67b


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