2022-01-15 19:00:35 +09:00
|
|
|
#! bash oh-my-bash.module
|
2017-10-10 18:07:01 +07:00
|
|
|
|
|
|
|
prompt_setter() {
|
|
|
|
# Save history
|
|
|
|
history -a
|
|
|
|
history -c
|
|
|
|
history -r
|
2021-12-28 07:34:53 +09:00
|
|
|
PS1="($(clock_prompt)) $(scm_char) [$blue\u$reset_color@$green\H$reset_color] $yellow\w${reset_color}$(scm_prompt_info)$(_omb_prompt_print_ruby_env) $reset_color "
|
2017-10-10 18:07:01 +07:00
|
|
|
PS2='> '
|
|
|
|
PS4='+ '
|
|
|
|
}
|
|
|
|
|
2021-12-28 09:19:44 +09:00
|
|
|
_omb_util_add_prompt_command prompt_setter
|
2017-10-10 18:07:01 +07:00
|
|
|
|
|
|
|
SCM_THEME_PROMPT_DIRTY=" ✗"
|
|
|
|
SCM_THEME_PROMPT_CLEAN=" ✓"
|
|
|
|
SCM_THEME_PROMPT_PREFIX=" ("
|
|
|
|
SCM_THEME_PROMPT_SUFFIX=")"
|
|
|
|
RVM_THEME_PROMPT_PREFIX=" ("
|
|
|
|
RVM_THEME_PROMPT_SUFFIX=")"
|