added bashrc ovverrides and relative function to deploy.sh

This commit is contained in:
2021-01-11 15:25:38 +01:00
parent bc6b382058
commit 07c9af1e22
10 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias diff='diff --color'
fi