Convert themes and plugins to use the update colors. Themes are no longer burdened with escaping the unprintable characters

This commit is contained in:
JFSIII
2011-06-17 19:45:21 -04:00
parent 46b8d27815
commit 1b7c9419bf
14 changed files with 94 additions and 75 deletions

View File

@@ -13,6 +13,10 @@ function rvm_version_prompt {
[ "$full" != "" ] && echo "$full"
}
function prompt_command() {
# Check http://github.com/Sirupsen/dotfiles for screenshot
PS1="$blue\W/$bold_blue$(rvm_version_prompt)$bold_green$(__git_ps1 " (%s)") ${normal}$ "
}
# Check http://github.com/Sirupsen/dotfiles for screenshot
PS1='\[$blue\]\W/\[$bold_blue\]$(rvm_version_prompt)\[$bold_green\]$(__git_ps1 " (%s)") \[${normal}\]$ '
PROMPT_COMMAND=prompt_command;