diff options
author | noa | 2025-02-17 15:06:23 +0800 |
---|---|---|
committer | noa | 2025-02-17 15:06:23 +0800 |
commit | 5fcbeb3778f2187cf6ab633b084949bf21d1c7ac (patch) | |
tree | bb48ee8e70f27388470ca459383c31db64f5775c /emacs/init.el | |
parent | 4d615491040227335fb16cd8a1a6b67606faf8e5 (diff) |
Don't configure faces for goto-addr
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/emacs/init.el b/emacs/init.el index 3dd3c3c..958b453 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -227,12 +227,7 @@ ;; Goto address mode makes urls and email address in a buffer clickable. I want these clickable links to look like links, because that's what they are. The two mouse face variables are what face is used on hover, which at the moment i ignore. It might also be worth setting them to 'highlight. (use-package goto-addr - :hook (after-init . global-goto-address-mode) - :custom - (goto-address-mail-face 'link) - (goto-address-mail-mouse-face 'highlight) - (goto-address-url-face 'link) - (goto-address-url-mouse-face 'highlight)) + :hook (after-init . global-goto-address-mode)) (defvar noa/record-url-file "~/Documents/Library/urls") (defun noa/record-url (url &rest args) |