#!/usr/bin/env zsh if [[ -s $commands[emacs] ]] then if [[ ! -d ~/cask ]] then git clone git://github.com/cask/cask ~/.cask if [[ ! -d ~/bin ]] then mkdir ~/bin fi ln -s ~/.cask/bin/cask ~/bin/cask fi pushd ~/.emacs.d cask install emacs --batch --eval "(progn (find-file \"init.org\") (require 'ob-tangle) (org-babel-tangle nil \"init.el\") (byte-compile-file \"init.el\") )" popd fi