the custom color functions from bash-it don't escape correctly. fix this for phudj.theme

pull/1578/head
phreakocious 2019-03-25 09:48:21 -07:00
parent 51797585ae
commit 3eb1257db0
1 changed files with 3 additions and 3 deletions

View File

@ -15,15 +15,15 @@
color_user="$bold_green"
color_host="$green"
color_time="$(echo_color rgb 265 265 265)"
color_time="\[$(echo_color rgb 265 265 265)\]"
color_at="$color_time"
color_path="$cyan"
color_clean="$bold_green"
color_dirty="$(echo_color rgb 255 95 0)"
color_dirty="\[$(echo_color rgb 255 95 0)\]"
color_ahead="$bold_yellow"
color_behind="$yellow"
color_diverge="$bold_white"
color_branch="$(echo_color rgb 0 255 95)"
color_branch="\[$(echo_color rgb 0 255 95)\]"
color_success="$bold_green"
color_failure="$bold_red"