mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 13:21:19 +08:00 
			
		
		
		
	feat(gnzh): add virtualenv prompt (#12666)
This commit is contained in:
		
							parent
							
								
									865291cb7a
								
							
						
					
					
						commit
						d91944d47e
					
				@ -30,8 +30,9 @@ local return_code="%(?..%F{red}%? ↵%f)"
 | 
				
			|||||||
local user_host="${PR_USER}%F{cyan}@${PR_HOST}"
 | 
					local user_host="${PR_USER}%F{cyan}@${PR_HOST}"
 | 
				
			||||||
local current_dir="%B%F{blue}%~%f%b"
 | 
					local current_dir="%B%F{blue}%~%f%b"
 | 
				
			||||||
local git_branch='$(git_prompt_info)'
 | 
					local git_branch='$(git_prompt_info)'
 | 
				
			||||||
 | 
					local venv_prompt='$(virtualenv_prompt_info)' 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PROMPT="╭─${user_host} ${current_dir} \$(ruby_prompt_info) ${git_branch}
 | 
					PROMPT="╭─${venv_prompt}${user_host} ${current_dir} \$(ruby_prompt_info) ${git_branch}
 | 
				
			||||||
╰─$PR_PROMPT "
 | 
					╰─$PR_PROMPT "
 | 
				
			||||||
RPROMPT="${return_code}"
 | 
					RPROMPT="${return_code}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -39,5 +40,7 @@ ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}‹"
 | 
				
			|||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="› %f"
 | 
					ZSH_THEME_GIT_PROMPT_SUFFIX="› %f"
 | 
				
			||||||
ZSH_THEME_RUBY_PROMPT_PREFIX="%F{red}‹"
 | 
					ZSH_THEME_RUBY_PROMPT_PREFIX="%F{red}‹"
 | 
				
			||||||
ZSH_THEME_RUBY_PROMPT_SUFFIX="›%f"
 | 
					ZSH_THEME_RUBY_PROMPT_SUFFIX="›%f"
 | 
				
			||||||
 | 
					ZSH_THEME_VIRTUALENV_PREFIX="%F{red}("
 | 
				
			||||||
 | 
					ZSH_THEME_VIRTUALENV_SUFFIX=")%f "
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user