* Only load a theme file if `bobby` has been set * Only alter `PS1` if `\[[1;34m\]\[$(scm_char)\]\[[0;32m\]\[$(scm_prompt_info)\]\[[0;34m\]\[$(rvm_version_prompt)\] \[[33;40m\]\h \[[39m\]in \[[0;32m\]\w \[[39m\]\[\n\[[0;32m\]→\[[39m\] ` has a value
13 lines
251 B
Bash
13 lines
251 B
Bash
#!/bin/bash
|
|
|
|
# colored grep
|
|
export GREP_OPTIONS='--color=auto'
|
|
export GREP_COLOR='1;33'
|
|
|
|
# colored ls
|
|
export LSCOLORS='Gxfxcxdxdxegedabagacad'
|
|
|
|
# Load the theme
|
|
if [[ $BASH_THEME ]]; then
|
|
source "$BASH/themes/$BASH_THEME/$BASH_THEME.theme.bash"
|
|
fi |