16 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env zsh
 | 
						|
# Eryn Wells <eryn@erynwells.me>
 | 
						|
 | 
						|
autoload load_module
 | 
						|
 | 
						|
local myfpath="$HOME/.zsh/func"
 | 
						|
 | 
						|
for func in $myfpath/*; do
 | 
						|
    [[ ! -e "$func" || -d "$func" ]] && continue
 | 
						|
 | 
						|
    local functionName=`basename $func`
 | 
						|
    [[ "$functionName" =~ "prompt_*" ]] && continue
 | 
						|
    [[ "$functionName" =~ "init_*" ]] && continue
 | 
						|
 | 
						|
    autoload -Uz $functionName
 | 
						|
done
 |