#!/bin/bash | |
# colored grep | |
export GREP_OPTIONS='--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 |