Browse Source
As per the documentation (see "(elisp)Startup Summary"), only variable customization that affect package initialization should go into the early init file. Defining package archives is explicitly mentioned as something that still may go into the main init file. So we move it there and adjust comments accordingly.master
2 changed files with 8 additions and 8 deletions
@ -1,11 +1,5 @@
|
||||
;; -*- lexical-binding: t -*- |
||||
|
||||
(require 'package) |
||||
|
||||
(setq package-user-dir (expand-file-name "elpa" user-emacs-directory)) |
||||
|
||||
(setq package-archives |
||||
'(("melpa" . "https://melpa.org/packages/") |
||||
("gnu" . "https://elpa.gnu.org/packages/") |
||||
("melpa-stable" . "https://stable.melpa.org/packages/") |
||||
("org" . "https://orgmode.org/elpa/"))) |
||||
|
||||
|
Loading…
Reference in new issue