mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			380 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			380 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# ZSH Theme emulating the Fish shell's default prompt.
 | 
						|
 | 
						|
local user_color='green'; [ $UID -eq 0 ] && user_color='red'
 | 
						|
PROMPT='%n@%m %{$fg[$user_color]%}%~%{$reset_color%}%(!.#.>) '
 | 
						|
PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
 | 
						|
RPS1='%(?..%{$fg[red]%}%? ↵%{$reset_color%})$(git_prompt_info)'
 | 
						|
 | 
						|
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}"
 | 
						|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
 |