1
0
Fork 0
dotfiles/zsh/zshrc

29 lines
723 B
Bash
Raw Normal View History

2013-05-21 06:57:41 +00:00
export EDITOR="subl -n -w"
2013-01-19 13:18:29 +00:00
# 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
2013-03-13 08:51:31 +00:00
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
2013-04-19 18:11:41 +00:00
export PATH="/usr/local/sbin:$PATH"