1
0
Fork 0

fix(emacs): style bold explicit display of matching parentheses

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-11-20 20:55:26 -05:00
parent 628398a3f4
commit df4572dec6
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -75,8 +75,7 @@
(defun download-file (&optional url filepath) (defun download-file (&optional url filepath)
"Download the file from URL to FILEPATH." "Download the file from URL to FILEPATH."
(interactive) (interactive)
(let* ((url (or url (let* ((url (or url (read-string "url: ")))
(read-string "url: ")))
(filepath (or filepath (read-file-name "filename: ")))) (filepath (or filepath (read-file-name "filename: "))))
(url-copy-file url filepath 1))) (url-copy-file url filepath 1)))
@ -139,6 +138,8 @@
(shr-text ((t (:inherit variable-pitch-text :family ,priime-variable-font)))) (shr-text ((t (:inherit variable-pitch-text :family ,priime-variable-font))))
(line-number ((t (:inherit default :foreground "#98A4AE")))) (line-number ((t (:inherit default :foreground "#98A4AE"))))
(line-number-current-line ((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 :bind
(("C-v" . View-scroll-half-page-forward) (("C-v" . View-scroll-half-page-forward)