From bc3615e706153a7e09872194d858e95e41aa94ec Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 4 Sep 2025 11:07:42 -0400 Subject: [PATCH] Update README.md --- README.md | 120 +++++++++++++++++++++++++++--------------------------- 1 file changed, 61 insertions(+), 59 deletions(-) diff --git a/README.md b/README.md index f5e9536..bf613a0 100644 --- a/README.md +++ b/README.md @@ -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: ```elisp (setq package-pinned-packages - '((org-appear . "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") + '((annalist . "melpa-stable") (ansible-doc . "melpa-stable") + (apheleia . "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") + (markdown-toc . "melpa-stable") + (org-appear . "melpa-stable") + (package-lint-flymake . "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") (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") - (expand-region . "gnu") + (aggressive-indent . "gnu") + (avy . "gnu") + (cape . "gnu") + (compat . "gnu") + (consult . "gnu") + (corfu . "gnu") + (csv-mode . "gnu") + (dash . "gnu") (diff-hl . "gnu") (diminish . "gnu") - (rainbow-delimiters . "nongnu") - (with-editor . "nongnu") - (ws-butler . "nongnu") - (exec-path-from-shell . "nongnu") + (easy-escape . "gnu") + (embark . "gnu") + (embark-consult . "gnu") + (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") - (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-session . "nongnu") - (golden-ratio . "nongnu") - (paredit . "nongnu") - (lua-mode . "nongnu") (wgrep . "nongnu") - (popup . "nongnu") - (eat . "nongnu") - (goto-chg . "nongnu") - (git-modes . "nongnu") - (package-lint . "nongnu") - (markdown-mode . "nongnu") - (edit-indirect . "nongnu") - (page-break-lines . "nongnu") - (magit . "nongnu") - (gptel . "nongnu"))) + (with-editor . "nongnu") + (ws-butler . "nongnu") + (yaml-mode . "nongnu"))) ``` ### How to use MELPA stable?