Update README.md

This commit is contained in:
James Cherti
2025-03-06 09:02:14 -05:00
parent 014da78e6f
commit 1b06666446

View File

@@ -1000,6 +1000,14 @@ In this configuration, the GNU, Nongnu, and MELPA Stable archives (which contain
To prioritize MELPA over MELPA Stable, to access bleeding-edge package versions, you can adjust the `package-archive-priorities` variable accordingly: To prioritize MELPA over MELPA Stable, to access bleeding-edge package versions, you can adjust the `package-archive-priorities` variable accordingly:
```elisp ```elisp
;; This change increases MELPA's priority to 75, above MELPA Stable's
;; priority of 70, ensuring that MELPA is preferred for package installations
;; over MELPA Stable.
;;
;; MELPA Stable offers reliable, tested versions, while MELPA provides newer
;; features at the risk of potential instability; for your information,
;; the author of minimal-emacs.d has been using MELPA (and not MELPA stable)
;; for years without any major issues.
(customize-set-variable 'package-archive-priorities '(("gnu" . 99) (customize-set-variable 'package-archive-priorities '(("gnu" . 99)
("nongnu" . 80) ("nongnu" . 80)
("melpa-stable" . 70) ("melpa-stable" . 70)
@@ -1007,8 +1015,6 @@ To prioritize MELPA over MELPA Stable, to access bleeding-edge package versions,
("melpa" . 75))) ("melpa" . 75)))
``` ```
This change increases MELPA's priority to 75, above MELPA Stable's priority of 70, ensuring that MELPA is preferred for package installations over MELPA Stable.
### How to load a local lisp file for machine-specific configurations? ### How to load a local lisp file for machine-specific configurations?
Add the following line to the end of your `post-init.el` file: Add the following line to the end of your `post-init.el` file: