cfc1057af0
* new variable configuration-layer-stable-elpa-archive * add missing sub-directory "packages" * update .lock file with above changes and bump to archive version 0.400
21 lines
804 B
Text
21 lines
804 B
Text
;; -*- mode: emacs-lisp -*-
|
|
|
|
(setq configuration-layer-stable-elpa-name "spacelpa")
|
|
(setq configuration-layer-stable-elpa-version "0.400")
|
|
(setq configuration-layer-stable-elpa-archive (concat configuration-layer-stable-elpa-directory
|
|
"spacelpa-"
|
|
configuration-layer-stable-elpa-version))
|
|
(setq configuration-layer-elpa-subdirectory "develop")
|
|
|
|
(setq configuration-layer-elpa-archives
|
|
`(("melpa" . "melpa.org/packages/")
|
|
("org" . "orgmode.org/elpa/")
|
|
("gnu" . "elpa.gnu.org/packages/")
|
|
("spacelpa" . ,(concat configuration-layer-stable-elpa-archive "/packages/"))))
|
|
|
|
(setq package-archive-priorities
|
|
'(("spacelpa" . 8)
|
|
("melpa" . 4)
|
|
("org" . 2)
|
|
("gnu" . 1)))
|
|
|