summary refs log tree commit diff stats
path: root/hooks
diff options
context:
space:
mode:
authorAlan Pearce2015-11-16 15:37:17 +0100
committerAlan Pearce2015-11-16 15:42:19 +0100
commiteaad53be0b89234332b67f6c4d980c4cd8efcf8c (patch)
treef983009bb46ea7ed9818518b469ab8f5c301350a /hooks
parent0e0d0fbd9a9926739c014b83f268fe06e113bfe4 (diff)
downloaddotfiles-eaad53be0b89234332b67f6c4d980c4cd8efcf8c.tar.lz
dotfiles-eaad53be0b89234332b67f6c4d980c4cd8efcf8c.tar.zst
dotfiles-eaad53be0b89234332b67f6c4d980c4cd8efcf8c.zip
Emacs: Remove cask and pallet
Instead, use a package-directory based upon the emacs version, which was
the main feature about cask, for me.
Diffstat (limited to 'hooks')
-rwxr-xr-xhooks/post-up/emacs11
1 files changed, 1 insertions, 10 deletions
diff --git a/hooks/post-up/emacs b/hooks/post-up/emacs
index b8a8edc..1cc19f9 100755
--- a/hooks/post-up/emacs
+++ b/hooks/post-up/emacs
@@ -2,22 +2,13 @@
 
 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\")
+(load-file \"init.el\")
 )"
 	popd
 fi