summary refs log tree commit diff stats
path: root/hooks/post-up/emacs
blob: b8a8edc7b43ce3cb747a0c3ee8d092ca430070b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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