mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			236 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			236 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# get the nvm-controlled node.js version
 | 
						|
function nvm_prompt_info() {
 | 
						|
  which nvm &>/dev/null || return
 | 
						|
  local nvm_prompt=${$(nvm current)#v}
 | 
						|
  echo "${ZSH_THEME_NVM_PROMPT_PREFIX}${nvm_prompt:gs/%/%%}${ZSH_THEME_NVM_PROMPT_SUFFIX}"
 | 
						|
}
 |