mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 12:09:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			325 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			325 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#
 | 
						|
# Defines environment variables.
 | 
						|
#
 | 
						|
# Authors:
 | 
						|
#   Sorin Ionescu <sorin.ionescu@gmail.com>
 | 
						|
#
 | 
						|
 | 
						|
# Ensure that a non-login, non-interactive shell has a defined environment.
 | 
						|
if [[ "$SHLVL" -eq 1 && ! -o LOGIN ]]; then
 | 
						|
  source "${ZDOTDIR:-$HOME}/.zprofile"
 | 
						|
fi
 | 
						|
 | 
						|
#
 | 
						|
# Zsh
 | 
						|
#
 | 
						|
 | 
						|
ZDOTDIR="${ZDOTDIR:-$HOME}"
 | 
						|
PREZTO="$ZDOTDIR/.zprezto"
 | 
						|
 |