16 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			322 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env zsh
 | 
						|
# Eryn Wells <eryn@erynwells.me>
 | 
						|
 | 
						|
function init_zsh_options
 | 
						|
{
 | 
						|
    # Report seconds since shell was invoked in milliseconds
 | 
						|
    typeset -F SECONDS
 | 
						|
 | 
						|
    # See zshoptions(1)
 | 
						|
    setopt EXTENDED_GLOB \
 | 
						|
           MULTIOS \
 | 
						|
           AUTO_REMOVE_SLASH \
 | 
						|
           COMPLETE_IN_WORD
 | 
						|
}
 | 
						|
 | 
						|
init_zsh_options "$@"
 |