From f5f92c653b35a226dec8b7a3d7884ed0b42af476 Mon Sep 17 00:00:00 2001 From: John Doty Date: Wed, 19 Apr 2023 12:58:26 +0000 Subject: [PATCH] Don't download fresh --- .emacs.d/init.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 6f947f4..ccb7e57 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -101,10 +101,13 @@ (add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t) ) (package-initialize) - (unless package-archive-contents - (package-refresh-contents) - (package-install-selected-packages)) + (package-refresh-contents)) + +;; Really we should be marking *everyting* here with :ensure rather than +;; downloading it all up front. +;; +;; (package-install-selected-packages)) ;; ================================================================= ;; Common stuff that's needed once