Move core/debug.el => ./debug.el
"debug.el" conflicts with built-in debug package
This commit is contained in:
parent
3dfffe455e
commit
c7e2b38368
2 changed files with 6 additions and 14 deletions
16
debug.el
Normal file
16
debug.el
Normal file
|
@ -0,0 +1,16 @@
|
|||
;;; debug.el -*- lexical-binding: t; -*-
|
||||
|
||||
;; To test something in a blank, vanilla Emacs session (Emacs -Q) load me:
|
||||
;;
|
||||
;; emacs -Q -l debug.el
|
||||
|
||||
(setq user-emacs-directory (file-name-directory load-file-name)
|
||||
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)
|
||||
|
||||
;; Then you can test packages in isolation here...
|
Loading…
Add table
Add a link
Reference in a new issue