all repos — archive/dotfiles @ eaad53be0b89234332b67f6c4d980c4cd8efcf8c

Superseded by nixfiles

Emacs: Remove cask and pallet Instead, use a package-directory based upon the emacs version, which was the main feature about cask, for me.

Alan Pearce
commit

eaad53be0b89234332b67f6c4d980c4cd8efcf8c

parent

0e0d0fbd9a9926739c014b83f268fe06e113bfe4

1 file changed, 1 insertion(+), 10 deletions(-)

changed files
M hooks/post-up/emacshooks/post-up/emacs
@@ -2,22 +2,13 @@ #!/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\") +(load-file \"init.el\") )" popd fi