* Only load a theme file if `bobby` has been set
* Only alter `PS1` if `\[\e[1;34m\]\[$(scm_char)\]\[\e[0;32m\]\[$(scm_prompt_info)\]\[\e[0;34m\]\[$(rvm_version_prompt)\] \[\e[33;40m\]\h \[\e[39m\]in \[\e[0;32m\]\w \[\e[39m\]\[\n\[\e[0;32m\]→\[\e[39m\] ` has a value
unset config_file
-export PS1=$PROMPT
-
+if [[ $PROMPT ]]; then
+ export PS1=$PROMPT
+fi
# Adding Support for other OSes
PREVIEW="less"
export LSCOLORS='Gxfxcxdxdxegedabagacad'
# Load the theme
-source "$BASH/themes/$BASH_THEME/$BASH_THEME.theme.bash"
\ No newline at end of file
+if [[ $BASH_THEME ]]; then
+ source "$BASH/themes/$BASH_THEME/$BASH_THEME.theme.bash"
+fi
\ No newline at end of file