From 020cbbee8eedd8aca47749801185dd198e2ab636 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 2 Feb 2026 21:15:02 -0500 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 8dd01cc..733ed57 100644 --- a/README.md +++ b/README.md @@ -1683,6 +1683,15 @@ In Emacs, customization variables modified via the UI (e.g., `M-x customize`) ar 2. You can also add the following to `~/.emacs.d/post-init.el`: ```emacs-lisp +;;; Enable automatic insertion and management of matching pairs of characters +;;; (e.g., (), {}, "") globally using `electric-pair-mode'. +(use-package elec-pair + :ensure nil + :commands (electric-pair-mode + electric-pair-local-mode + electric-pair-delete-pair) + :hook (after-init . electric-pair-mode)) + ;; Allow Emacs to upgrade built-in packages, such as Org mode (setq package-install-upgrade-built-in t)