blob: f7235118dfe148cc0dac4d739171d40013a8b255 [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 Schulz6e7f4232010-11-11 11:57:47 -050011if [[ $BASH_THEME ]]; then
12 source "$BASH/themes/$BASH_THEME/$BASH_THEME.theme.bash"
13fi