From 980ce6750b0aceefba08c22a9203492d160bdabb Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 27 May 2025 12:03:41 +0200 Subject: [PATCH] feat: Add paren package configuration show-paren-context-when-offscreen is handy to indicate when we are offscreen for a block of code --- config.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config.org b/config.org index 7af261e..994938c 100644 --- a/config.org +++ b/config.org @@ -704,6 +704,18 @@ https://github.com/victorhge/iedit :hook (prog-mode-hook . electric-pair-mode)) #+END_SRC +** Paren + +#+BEGIN_SRC emacs-lisp +(use-package paren + :ensure nil + :hook (after-init-hook . show-paren-mode) + :custom + (show-paren-delay 0) + (show-paren-style 'mixed) + (show-paren-context-when-offscreen t)) ;; show matches within window splits +#+END_SRC + ** Eglot #+BEGIN_SRC emacs-lisp