commit ee105cf1acafd79154aa6cb9e5f178cfe4b97ebc parent 73b1391f3b6d3bc78e7200ffb0e864d1827ce4a5 Author: Hugo Soucy <hugo@soucy.cc> Date: Sun, 7 Feb 2021 06:41:36 -0500 Modify the package-archive list Diffstat:
M | init.el | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/init.el b/init.el @@ -1,16 +1,17 @@ +;; ;; GNU Emacs Configuration init.el file of hs0ucy. ;; ;; SET PACKAGE & USE-PACKAGE ;; -(server-start) ;; Add Melpa, Marmalade & GNU sources archives for =package.el= (when (>= emacs-major-version 24) (require 'package) (setq package-enable-at-startup nil) - (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) - (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")) + (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) + (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/") t) + (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t) ; Org-mode's repository (package-initialize)) ;; Install =use-package= if it's not there