blob: 28a131a4b895029e79508ca1d5651f7f5b7e0551 [file] [log] [blame]
Robert R Evans76ed68d2010-10-02 12:29:17 -07001#!/bin/bash
2
Robert R Evans9c7cd9a2010-10-02 11:55:34 -07003# colored grep
4export GREP_OPTIONS='--color=auto'
5export GREP_COLOR='1;33'
6
7# colored ls
8export LSCOLORS='Gxfxcxdxdxegedabagacad'
9
Robert R Evans9c7cd9a2010-10-02 11:55:34 -070010# Load the theme
John Schulz323ce202011-09-20 11:07:48 -040011if [[ $BASH_IT_THEME ]]; then
12 source "$BASH_IT/themes/$BASH_IT_THEME/$BASH_IT_THEME.theme.bash"
13fi