From ace0b159157646ec6920f2e9684bf59071bf926e Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Mon, 19 May 2014 10:17:31 -0500 Subject: [PATCH] prefer ascii to unicode in scm/git prompts --- themes/neato/neato.theme.bash | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/neato/neato.theme.bash b/themes/neato/neato.theme.bash index f76abac5..d81e7a42 100755 --- a/themes/neato/neato.theme.bash +++ b/themes/neato/neato.theme.bash @@ -1,12 +1,12 @@ #!/usr/bin/env bash -SCM_THEME_PROMPT_DIRTY=" ${red}✗" -SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓" +SCM_THEME_PROMPT_DIRTY=" ${red}*" +SCM_THEME_PROMPT_CLEAN="" SCM_THEME_PROMPT_PREFIX=" [" SCM_THEME_PROMPT_SUFFIX="${green}]" -GIT_THEME_PROMPT_DIRTY=" ${red}✗" -GIT_THEME_PROMPT_CLEAN=" ${bold_green}✓" +GIT_THEME_PROMPT_DIRTY=" ${red}*" +GIT_THEME_PROMPT_CLEAN="" GIT_THEME_PROMPT_PREFIX=" ${green}[" GIT_THEME_PROMPT_SUFFIX="${green}]"