Remove no-byte-compile and change package settings

This commit is contained in:
James Cherti
2025-03-12 17:49:13 -04:00
parent 611a8632e7
commit d547a87d8c
3 changed files with 8 additions and 4 deletions

View File

@@ -1075,7 +1075,10 @@ Add the following to your `~/.emacs.d/pre-early-init.el` file:
To add MELPA Stable for accessing stable package versions, you can adjust the `package-archive-priorities` variable in your `~/.emacs.d/post-early-init.el` file.
```elisp
(push '("melpa-stable" . "https://stable.melpa.org/packages/") package-archives)
(customize-set-variable 'package-archive-priorities '(("gnu" . 99)
("nongnu" . 80)
("melpa-stable" . 70)
("melpa" . 0)))
```
However, the packages can sometimes be outdated.

View File

@@ -382,11 +382,12 @@ this stage of initialization."
(setq use-package-enable-imenu-support t)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")
("melpa-stable" . "https://stable.melpa.org/packages/")
("nongnu" . "https://elpa.nongnu.org/nongnu/")))
(customize-set-variable 'package-archive-priorities '(("gnu" . 99)
("nongnu" . 80)
("melpa-stable" . 70)
("melpa" . 0)))
("melpa" . 70)
("melpa-stable" . 0)))
;;; Load post-early-init.el
(minimal-emacs-load-user-init "post-early-init")

View File

@@ -1,4 +1,4 @@
;;; init.el --- Init -*- no-byte-compile: t; lexical-binding: t; -*-
;;; init.el --- Init -*- lexical-binding: t; -*-
;; Author: James Cherti
;; URL: https://github.com/jamescherti/minimal-emacs.d