Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Emacs.org
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ Emacs has a built in package manager but it doesn't make it easy to automaticall
("org" . "https://orgmode.org/elpa/")
("elpa" . "https://elpa.gnu.org/packages/")))

(package-initialize)
(if (>= emacs-major-version 27)
(package-read-all-archive-contents)
(package-initialize))
(unless package-archive-contents
(package-refresh-contents))

Expand Down