My oh my zsh prompt reads something like:
tenant-application git:(beta-4-1)
I want it to read something like:
homestead tenant-application git:(beta-4-1)
Or something similar where I can understand the hostname of the machine
When I do echo $PROMPT
, it says
${ret_status} %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)
I tried:
export PROMPT=${ret_status} ${hostname} %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)
But the error said:
zsh: not an identifier: %{^[[36m%}%c%{^[[00m%}
What am I doing wrong and how to make the right thing permanent?