Mostly git and ruby stuff

This commit is contained in:
Gregory Eremin
2013-02-22 16:32:41 +04:00
parent 3a950f2ed9
commit a4c14bc74a
13 changed files with 47 additions and 20 deletions
+22
View File
@@ -0,0 +1,22 @@
# 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