Robert R Evans | 76ed68d | 2010-10-02 12:29:17 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
Robert R Evans | 9c7cd9a | 2010-10-02 11:55:34 -0700 | [diff] [blame] | 3 | # colored grep |
4 | export GREP_OPTIONS='--color=auto' | ||||
5 | export GREP_COLOR='1;33' | ||||
6 | |||||
7 | # colored ls | ||||
8 | export LSCOLORS='Gxfxcxdxdxegedabagacad' | ||||
9 | |||||
Robert R Evans | 9c7cd9a | 2010-10-02 11:55:34 -0700 | [diff] [blame] | 10 | # Load the theme |
11 | source "$BASH/themes/$BASH_THEME/$BASH_THEME.bash" |