Update README.md

This commit is contained in:
James Cherti
2025-09-04 11:07:42 -04:00
parent af942662c1
commit bc3615e706

120
README.md
View File

@@ -1894,78 +1894,80 @@ In the event of a package breakage, you can direct Emacs to install a package fr
Here is a comprehensive `package-pinned-packages` configuration to guarantee that essential packages, such as **consult** or **corfu**, are retrieved from a stable repository, while all remaining packages are obtained from MELPA according to the `package-archive-priorities' priorities above: Here is a comprehensive `package-pinned-packages` configuration to guarantee that essential packages, such as **consult** or **corfu**, are retrieved from a stable repository, while all remaining packages are obtained from MELPA according to the `package-archive-priorities' priorities above:
```elisp ```elisp
(setq package-pinned-packages (setq package-pinned-packages
'((org-appear . "melpa-stable") '((annalist . "melpa-stable")
(groovy-mode . "melpa-stable")
(flymake-quickdef . "melpa-stable")
(annalist . "melpa-stable")
(markdown-toc . "melpa-stable")
(elisp-refs . "melpa-stable")
(dumb-jump . "melpa-stable")
(evil-collection . "melpa-stable")
(consult-dir . "melpa-stable")
(prescient . "melpa-stable")
(corfu-prescient . "melpa-stable")
(vertico-prescient . "melpa-stable")
(dtrt-indent . "melpa-stable")
(f . "melpa-stable")
(s . "melpa-stable")
(apheleia . "melpa-stable")
(package-lint-flymake . "melpa-stable")
(ansible-doc . "melpa-stable") (ansible-doc . "melpa-stable")
(apheleia . "melpa-stable")
(basic-mode . "melpa-stable") (basic-mode . "melpa-stable")
(tocus . "melpa-stable") (consult-dir . "melpa-stable")
(corfu-prescient . "melpa-stable")
(dtrt-indent . "melpa-stable")
(dumb-jump . "melpa-stable")
(elisp-refs . "melpa-stable")
(evil-collection . "melpa-stable")
(f . "melpa-stable")
(flymake-quickdef . "melpa-stable")
(groovy-mode . "melpa-stable")
(highlight-defined . "melpa-stable") (highlight-defined . "melpa-stable")
(markdown-toc . "melpa-stable")
(org-appear . "melpa-stable")
(package-lint-flymake . "melpa-stable")
(parent-mode . "melpa-stable") (parent-mode . "melpa-stable")
(php-mode . "melpa-stable")
(prescient . "melpa-stable")
(s . "melpa-stable")
(tocus . "melpa-stable")
(treesit-auto . "melpa-stable")
(vertico-prescient . "melpa-stable")
(visual-fill-column . "melpa-stable") (visual-fill-column . "melpa-stable")
(yasnippet-snippets . "melpa-stable") (yasnippet-snippets . "melpa-stable")
(php-mode . "melpa-stable")
(rainbow-mode . "gnu")
(ztree . "gnu")
(easy-escape . "gnu")
(csv-mode . "gnu")
(aggressive-indent . "gnu")
(yasnippet . "gnu")
(org . "gnu")
(embark-consult . "gnu")
(embark . "gnu")
(compat . "gnu")
(corfu . "gnu")
(cape . "gnu")
(consult . "gnu")
(orderless . "gnu")
(vertico . "gnu")
(indent-bars . "gnu")
(transient . "gnu")
(dash . "gnu")
(modus-themes . "gnu")
(marginalia . "gnu")
(avy . "gnu")
(ace-window . "gnu") (ace-window . "gnu")
(expand-region . "gnu") (aggressive-indent . "gnu")
(avy . "gnu")
(cape . "gnu")
(compat . "gnu")
(consult . "gnu")
(corfu . "gnu")
(csv-mode . "gnu")
(dash . "gnu")
(diff-hl . "gnu") (diff-hl . "gnu")
(diminish . "gnu") (diminish . "gnu")
(rainbow-delimiters . "nongnu") (easy-escape . "gnu")
(with-editor . "nongnu") (embark . "gnu")
(ws-butler . "nongnu") (embark-consult . "gnu")
(exec-path-from-shell . "nongnu") (expand-region . "gnu")
(gcmh . "gnu")
(indent-bars . "gnu")
(marginalia . "gnu")
(modus-themes . "gnu")
(orderless . "gnu")
(org . "gnu")
(rainbow-mode . "gnu")
(transient . "gnu")
(vertico . "gnu")
(yasnippet . "gnu")
(ztree . "gnu")
(eat . "nongnu")
(edit-indirect . "nongnu")
(evil-visualstar . "nongnu") (evil-visualstar . "nongnu")
(yaml-mode . "nongnu") (exec-path-from-shell . "nongnu")
(git-modes . "nongnu")
(golden-ratio . "nongnu")
(goto-chg . "nongnu")
(gptel . "nongnu")
(lua-mode . "nongnu")
(magit . "nongnu")
(markdown-mode . "nongnu")
(package-lint . "nongnu")
(page-break-lines . "nongnu")
(paredit . "nongnu")
(popup . "nongnu")
(rainbow-delimiters . "nongnu")
(undo-fu . "nongnu") (undo-fu . "nongnu")
(undo-fu-session . "nongnu") (undo-fu-session . "nongnu")
(golden-ratio . "nongnu")
(paredit . "nongnu")
(lua-mode . "nongnu")
(wgrep . "nongnu") (wgrep . "nongnu")
(popup . "nongnu") (with-editor . "nongnu")
(eat . "nongnu") (ws-butler . "nongnu")
(goto-chg . "nongnu") (yaml-mode . "nongnu")))
(git-modes . "nongnu")
(package-lint . "nongnu")
(markdown-mode . "nongnu")
(edit-indirect . "nongnu")
(page-break-lines . "nongnu")
(magit . "nongnu")
(gptel . "nongnu")))
``` ```
### How to use MELPA stable? ### How to use MELPA stable?