29 lines
		
	
	
		
			723 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			723 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
export EDITOR="subl -n -w"
 | 
						|
 | 
						|
# shortcut to this dotfiles path is $ZSH
 | 
						|
export ZSH=$HOME/.dotfiles
 | 
						|
 | 
						|
# your project folder that we can `c [tab]` to
 | 
						|
export PROJECTS=~/Code
 | 
						|
 | 
						|
# source every .zsh file in this rep
 | 
						|
for config_file ($ZSH/**/*.zsh) source $config_file
 | 
						|
 | 
						|
# use .localrc for SUPER SECRET CRAP that you don't
 | 
						|
# want in your public, versioned repo.
 | 
						|
if [[ -a ~/.localrc ]]
 | 
						|
then
 | 
						|
  source ~/.localrc
 | 
						|
fi
 | 
						|
 | 
						|
# initialize autocomplete here, otherwise functions won't be loaded
 | 
						|
autoload -U compinit
 | 
						|
compinit
 | 
						|
 | 
						|
# load every completion after autocomplete loads
 | 
						|
# for config_file ($ZSH/**/completion.sh) source $config_file
 | 
						|
 | 
						|
### Added by the Heroku Toolbelt
 | 
						|
export PATH="/usr/local/heroku/bin:$PATH"
 | 
						|
export PATH="/usr/local/sbin:$PATH"
 |