From df4572dec6035a17333060efa1207444b9c7d404 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 20 Nov 2024 20:55:26 -0500 Subject: [PATCH] fix(emacs): style bold explicit display of matching parentheses Signed-off-by: Lucas Sta Maria --- .emacs.d/include/priime-general.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.emacs.d/include/priime-general.el b/.emacs.d/include/priime-general.el index eafc537..18d165e 100644 --- a/.emacs.d/include/priime-general.el +++ b/.emacs.d/include/priime-general.el @@ -75,8 +75,7 @@ (defun download-file (&optional url filepath) "Download the file from URL to FILEPATH." (interactive) - (let* ((url (or url - (read-string "url: "))) + (let* ((url (or url (read-string "url: "))) (filepath (or filepath (read-file-name "filename: ")))) (url-copy-file url filepath 1))) @@ -139,6 +138,8 @@ (shr-text ((t (:inherit variable-pitch-text :family ,priime-variable-font)))) (line-number ((t (:inherit default :foreground "#98A4AE")))) (line-number-current-line ((t (:inherit default :foreground "#98A4AE")))) + ;; show-paren-mode + (show-paren-match ((t (:inherit nano-salient-i :weight black)))) :bind (("C-v" . View-scroll-half-page-forward)