Skip to content

Instantly share code, notes, and snippets.

View joren's full-sized avatar

Joren De Groof joren

View GitHub Profile
@joren
joren / gist:4214088
Created December 5, 2012 09:08
git configs
# ~/.gitconfig
[user]
name = Joren
email = git@jorendegroof.be
[alias]
co = checkout
st = status
ci = commit
ic = commit
@joren
joren / projects.zsh
Created July 4, 2012 08:15
Oh my zsh projects auto complete
PROJECT_PATHS=(~/Projects/Openminds ~/Projects/Personal)
function project () {
cmd="cd"
file=$1
if [[ "open" == "$file" ]] then
file=$2
cmd=(${(s: :)EDITOR})
fi