# ls but do it without colour

function ls --description "List contents of directory"
	# make ls show */=>@| indicators
	isatty stdout
	and set -a opt -F

	# command $__fish_ls_command $__fish_ls_color_opt $opt $argv
	command ls $opt $argv
end