Files
bash-it/lib/appearance.bash
Sergio Pieiga e91f1a0aeb grep v2.21 compatibility
grep v2.21 depracates GREP_OPTIONS env var
2014-11-27 08:29:45 -05:00

14 lines
268 B
Bash

#!/usr/bin/env bash
# colored grep
alias grep='grep --color=auto'
export GREP_COLOR='1;33'
# colored ls
export LSCOLORS='Gxfxcxdxdxegedabagacad'
# Load the theme
if [[ $BASH_IT_THEME ]]; then
source "$BASH_IT/themes/$BASH_IT_THEME/$BASH_IT_THEME.theme.bash"
fi