2018-04-22 17:22:07 -04:00
|
|
|
;;; debug.el -*- lexical-binding: t; -*-
|
2018-04-21 21:05:31 -04:00
|
|
|
|
2018-04-22 17:22:07 -04:00
|
|
|
;; To test something in a blank, vanilla Emacs session (Emacs -Q) load me:
|
2018-04-21 21:05:31 -04:00
|
|
|
;;
|
2018-04-22 17:22:07 -04:00
|
|
|
;; emacs -Q -l debug.el
|
2018-04-21 21:05:31 -04:00
|
|
|
|
2018-04-22 17:22:07 -04:00
|
|
|
(setq user-emacs-directory (file-name-directory load-file-name)
|
2018-04-21 21:05:31 -04:00
|
|
|
package--init-file-ensured t
|
|
|
|
package-user-dir (expand-file-name ".local/packages/elpa" user-emacs-directory)
|
|
|
|
package-archives
|
|
|
|
'(("gnu" . "https://elpa.gnu.org/packages/")
|
|
|
|
("melpa" . "https://melpa.org/packages/")
|
|
|
|
("org" . "https://orgmode.org/elpa/")))
|
|
|
|
(package-initialize)
|
2018-04-22 17:22:07 -04:00
|
|
|
|
|
|
|
;; Then you can test packages in isolation here...
|