mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 05:01:17 +08:00 
			
		
		
		
	Cleans up minimal theme by not using a custom prompt function Removed case of 2 spaces showing if not in a version controlled folder Adds support for svn_prompt_info
		
			
				
	
	
		
			18 lines
		
	
	
		
			626 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			626 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[white]%}["
 | 
						|
ZSH_THEME_GIT_PROMPT_SUFFIX=""
 | 
						|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$reset_color%}]%{$reset_color%} "
 | 
						|
ZSH_THEME_GIT_PROMPT_CLEAN="]%{$reset_color%} "
 | 
						|
ZSH_THEME_SVN_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX
 | 
						|
ZSH_THEME_SVN_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX
 | 
						|
ZSH_THEME_SVN_PROMPT_DIRTY=$ZSH_THEME_GIT_PROMPT_DIRTY
 | 
						|
ZSH_THEME_SVN_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN
 | 
						|
 | 
						|
vcs_status() {
 | 
						|
    if [[ ( $(whence in_svn) != "" ) && ( $(in_svn) == 1 ) ]]; then
 | 
						|
        svn_prompt_info
 | 
						|
    else
 | 
						|
        git_prompt_info
 | 
						|
    fi
 | 
						|
}
 | 
						|
 | 
						|
PROMPT='%2~ $(vcs_status)»%b ' |