mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
11 lines
408 B
Bash
11 lines
408 B
Bash
local lambda='%{$fg[yellow]%}λ%{$reset_color%}'
|
|
local rvm_ruby='%{$fg[red]%}$(rvm-prompt i v g)%{$reset_color%}'
|
|
local git_branch='%{$fg_bold[blue]%}$(git_prompt_info)%{$reset_color%}'
|
|
|
|
PROMPT="%{$fg[green]%}%~ ${rvm_ruby} ${git_branch}
|
|
${lambda} "
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX=""
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX=" "
|
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗"
|
|
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔"
|