summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r--tag-emacs/emacs.d/init.org49
1 files changed, 2 insertions, 47 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index ed21bd12..720f14df 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -29,38 +29,6 @@ the buffer to be empty.
 
 * Packaging
 
-** Cask
-
-For most packages, I use [[https://github.com/cask/cask][cask]]
-#+BEGIN_SRC emacs-lisp
-  (eval-and-compile
-    (add-to-list 'load-path (expand-file-name "~/.cask")))
-  (require 'cask)
-  (cask-initialize)
-#+END_SRC
-
-*** Cask commands
-
-Installing
-#+BEGIN_SRC sh :tangle no
-curl -fsSL https://raw.githubusercontent.com/cask/cask/master/go | python
-#+END_SRC
-
-Install all packages specified in the Caskfile
-#+BEGIN_SRC sh :tangle no :dir ~/.emacs.d/
-cask install
-#+END_SRC
-
-List packages with new versions
-#+BEGIN_SRC sh :tangle no :dir ~/.emacs.d/ :results output
-cask outdated
-#+END_SRC
-
-Update old packages
-#+BEGIN_SRC sh :tangle no :dir ~/.emacs.d/
-cask update
-#+END_SRC
-
 ** Req-package
 
 #+BEGIN_SRC emacs-lisp
@@ -81,7 +49,8 @@ cask update
     (setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
                              ("marmalade" . "https://marmalade-repo.org/packages/")
                              ("melpa" . "https://melpa.org/packages/")
-                             ("melpa-stable" . "https://stable.melpa.org/packages/")))
+                             ("melpa-stable" . "https://stable.melpa.org/packages/"))
+          package-user-dir (concat "~/.emacs.d/packages/" emacs-version "/elpa"))
     (package-initialize)
     (unless (package-installed-p 'req-package)
       (package-refresh-contents)
@@ -90,19 +59,6 @@ cask update
   (setq use-package-verbose t)
 #+END_SRC
 
-** Pallet
-
-I use [[https://github.com/rdallasgray/pallet][pallet]] to keep my [[file:Cask][Caskfile]] up-to-date with packages installed
-from inside Emacs.  I don’t need it on startup, so I tell
-=req-package= to initialise it when Emacs is idle.
-
-#+BEGIN_SRC emacs-lisp
-(req-package pallet
-  :defer 5
-  :config (pallet-mode 1))
-#+END_SRC
-
-
 * Customize
 I don’t really like using customize for normal configuration.
 Instead, I use it for things that get saved automatically. That’s why
@@ -1706,7 +1662,6 @@ Customise the modeline-display of =emacs-lisp-mode=. Then make sure
 it runs the common lisp hooks.
 
 #+BEGIN_SRC emacs-lisp
-(add-to-list 'auto-mode-alist '("/Cask\\'" . emacs-lisp-mode))
 (add-hook 'emacs-lisp-mode-hook #'ap/lisp-setup)
 (add-hook 'emacs-lisp-mode-hook #'eldoc-mode)
 #+END_SRC