From: rush Date: Thu, 9 Jul 2026 14:50:31 +0000 (-0400) Subject: Make paren delay actually work X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=73058158afe00efcb90b092479aabf2231c852b6;p=emacsinit.git Make paren delay actually work --- diff --git a/init.el b/init.el index ffc185b..d17f594 100644 --- a/init.el +++ b/init.el @@ -922,16 +922,15 @@ If in org-mode, call `org-end-of-line' first." (global-prettify-symbols-mode t) ;;; Parens -;; Must be set after loading any theme - -(setq show-paren-delay 0 - show-paren-style 'expression) - (setq electric-pair-pairs '((?\" . ?\") (?\‘ . ?\’) (?\“ . ?\”) (?\{ . ?\}) (?\< . ?\>))) +(customize-set-variable 'show-paren-delay 0) ; Has to be set with customize, or the mode has to be toggled + +(setq show-paren-style 'expression) + ;;; Help