configs  Artifact [27c83c809a]

Artifact 27c83c809af60a4c45f4a7e730f665712f2a300d728bf6f85d73ca5cb8d6ff6e:

  • File config/fish/functions/ls.fish — part of check-in [c22a3e608c] at 2020-01-22 21:38:13 on branch trunk — fish: Slightly change command and operator color

    This is the exact same color in Apple Terminal, but improves legibility
    in Gnome Terminal.

    Also silences stderr from which. (user: js size: 164)


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