Remove default color settings and add missing PATH

Removed Debian's default color config for `ls'
and added missing PATH configuration.
This commit is contained in:
c47 2024-01-13 21:17:27 +01:00
parent 6670ff0329
commit 26c783104b

View file

@ -73,16 +73,16 @@ xterm*|rxvt*)
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#if [ -x /usr/bin/dircolors ]; then
#test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
#alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
#fi
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
@ -120,3 +120,4 @@ umask 0077
if [[ -f ${HOME}/.bash_aliases.local ]]; then
source ${HOME}/.bash_aliases.local
fi
export PATH=${HOME}/.local/bin:${PATH}