Mainly just moved configs to new CONFIG directory format

This commit is contained in:
2018-07-28 15:07:41 -05:00
parent 15d00b75ee
commit 4a184e88bf
10 changed files with 4 additions and 33 deletions

18
CONFIG/etc/bashrc Normal file
View File

@@ -0,0 +1,18 @@
# Setup for /bin/ls and /bin/grep to support color
if [ -f "/etc/dircolors" ] ; then
eval $(dircolors -b /etc/dircolors)
fi
if [ -f "$HOME/.dircolors" ] ; then
eval $(dircolors -b $HOME/.dircolors)
fi
# Prompt
if [ "`id -u`" -eq 0 ]; then
export PS1='\u@\h:\w# '
else
export PS1='\u@\h:\w$ '
fi
alias ls='ls --color=auto'
alias grep='grep --color=auto'