Comment on A new blog dedicated to EmacsparentComments−foobarqux13yHow do you achieve that?−spacemanaki13yThis is what I have at the top of my ~/.emacs.d/init.el: (require 'package) (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/") t) (package-initialize) (when (not package-archive-contents) (package-refresh-contents)) (defvar my-packages '(clojure-mode ...)) ; list of packages (dolist (p my-packages) (when (not (package-installed-p p)) (package-install p)))−zaphar13yhttps://bitbucket.org/zaphar/dotfiles/src/6ce04e6c7bbb03b21f... shows the current setup.It's gotten more sophisticated over the years. I can probably clean it up some but it works so I haven't touched it :-)
Comments
How do you achieve that?
This is what I have at the top of my ~/.emacs.d/init.el:
https://bitbucket.org/zaphar/dotfiles/src/6ce04e6c7bbb03b21f... shows the current setup.
It's gotten more sophisticated over the years. I can probably clean it up some but it works so I haven't touched it :-)