mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-11-04 07:21:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# zsh script sourced at startup when a user is found to have
 | 
						|
# no startup files.  See the documentation for the zsh/newuser
 | 
						|
# module in zshmodules(1).
 | 
						|
 | 
						|
if functions zsh-newuser-install >/dev/null 2>&1 ||
 | 
						|
   autoload -U +X zsh-newuser-install; then
 | 
						|
   zsh-newuser-install
 | 
						|
fi
 |