mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			396 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			396 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Path to your oh-my-zsh configuration.
 | 
						|
export ZSH=$HOME/.oh-my-zsh
 | 
						|
 | 
						|
# Load all of the config files in ~/oh-my-zsh that end in .zsh
 | 
						|
# TIP: Add files you don't want in git to .gitignore
 | 
						|
for i in $ZSH/*zsh; do source $i; done;
 | 
						|
 | 
						|
# Customize to your needs...
 | 
						|
#export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin
 | 
						|
export PATH=$PATH:$HOME/bin
 | 
						|
 |