summaryrefslogtreecommitdiff
path: root/themes/fino-time.zsh-theme
diff options
context:
space:
mode:
authorNick Diego Yamane <nick@diegoyam.com>2018-08-29 15:01:10 -0400
committerRobby Russell <robby@planetargon.com>2018-08-29 12:01:10 -0700
commit143cc8f90158f39d8630f26e9b0865502a467c61 (patch)
tree1522e77fc0b1ed66a96e207e9a0aadc1bf193637 /themes/fino-time.zsh-theme
parent285b540167a665bbe45da780f3fb35da2d4aea60 (diff)
downloadzsh-143cc8f90158f39d8630f26e9b0865502a467c61.tar.gz
zsh-143cc8f90158f39d8630f26e9b0865502a467c61.tar.bz2
zsh-143cc8f90158f39d8630f26e9b0865502a467c61.zip
Fix rvm-prompt usage in fino* themes (#6477)
* theme/fino: Check rvm-prompt is installed before to try to use it Signed-off-by: Nick Diego Yamane <nick.diego@gmail.com> * theme/fino-time: Check rvm-prompt is installed before to try to use it Signed-off-by: Nick Diego Yamane <nick.diego@gmail.com>
Diffstat (limited to 'themes/fino-time.zsh-theme')
-rw-r--r--themes/fino-time.zsh-theme8
1 files changed, 6 insertions, 2 deletions
diff --git a/themes/fino-time.zsh-theme b/themes/fino-time.zsh-theme
index 9b1db3a08..c1a48d02a 100644
--- a/themes/fino-time.zsh-theme
+++ b/themes/fino-time.zsh-theme
@@ -25,12 +25,16 @@ function box_name {
}
-local rvm_ruby='‹$(rvm-prompt i v g)›%{$reset_color%}'
+rvm_ruby=''
+if type rvm-prompt &>/dev/null; then
+ rvm_ruby='using%{$FG[243]%}‹$(rvm-prompt i v g)›%{$reset_color%}'
+fi
+
local current_dir='${PWD/#$HOME/~}'
local git_info='$(git_prompt_info)'
-PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}using%{$FG[243]%} ${rvm_ruby} %D - %*
+PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}${rvm_ruby} %D - %*
╰─$(virtualenv_info)$(prompt_char) "
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}"