configs  ls.fish at [1cacfaf154]

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


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