fix(emacs): style bold explicit display of matching parentheses
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
628398a3f4
commit
df4572dec6
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue