mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-10-25 08:09:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			351 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			351 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #
 | |
| # Loads prompt themes.
 | |
| #
 | |
| # Authors:
 | |
| #   Sorin Ionescu <sorin.ionescu@gmail.com>
 | |
| #
 | |
| 
 | |
| # Load and execute the prompt theming system.
 | |
| autoload -Uz promptinit && promptinit
 | |
| 
 | |
| # Load the prompt theme.
 | |
| zstyle -a ':prezto:module:prompt' theme 'prompt_argv'
 | |
| if (( $#prompt_argv > 0 )); then
 | |
|   prompt "$prompt_argv[@]"
 | |
| else
 | |
|   prompt 'off'
 | |
| fi
 | |
| unset prompt_argv
 | |
| 
 |