From 5301fbffbef931d5503389634fe49d3854a4decf Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Mon, 22 May 2023 21:03:50 +0200 Subject: [PATCH] Stop coloring ls --- shell/colors | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/shell/colors b/shell/colors index 12277b2..844ce11 100755 --- a/shell/colors +++ b/shell/colors @@ -1,7 +1,16 @@ -# add some color +# add some color on grep match alias grep=grep --color=auto -CLICOLOR=1; -export CLICOLOR + +# ls colors +# case "$OSTYPE" in +# *darwin*) +# export CLICOLOR=1 +# alias ls="ls --color=auto" +# ;; +# *linux*) +# alias ls="ls --color" +# ;; +# esac # gnome terminal knows colors [[ "$COLORTERM" == "gnome-terminal" ]] && export TERM=xterm-256color