Mercurial > dotfiles
view .elisp/settings/00.bootstrap.el @ 321:e9932cf1692f
certfor: make zsh-specific
This was mysteriously breaking login on my workstation.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 16 Jul 2013 13:40:31 -0400 |
parents | 7cb31ed262f0 |
children | aa5afa13e12c |
line wrap: on
line source
;; emacs -l .elisp/settings/00.bootstrap.el --batch -f af-bootstrap-packages ;; Use the above for moving into a new machine (add-to-list 'load-path (expand-file-name "~/.elisp")) (load "package") (package-initialize) (setq package-archives '(("durin42" . "http://durin42.com/elpa/") ("marmalade" . "http://marmalade-repo.org/packages/") ("elpa" . "http://tromey.com/elpa/"))) (defun af-bootstrap-packages () (interactive) (unless package-archive-contents (package-refresh-contents)) (dolist (pack '(diff-mode- doctest-mode http-twiddle ipython nose ;; disabled until I don't need a modified version ;; textmate iedit ;; from elpa js2-mode magit markdown-mode paredit smex yaml-mode company wgrep )) (unless (or (member pack package-activated-list) (functionp pack)) (message "Installing %s" (symbol-name pack)) (package-install pack))))