diff options
author | noa | 2024-10-24 15:13:17 +0800 |
---|---|---|
committer | noa | 2024-10-24 15:13:17 +0800 |
commit | 572b7e1f4bf6d26758ee922d61cdb8f84de29011 (patch) | |
tree | 9542e6ce0f0294d61557e8a96e2ccb87e8a66cb0 | |
parent | 15f98041ccd137caaa27d7c82c539e0cf1d73fde (diff) |
Change character used for hiding markdown urls
-rw-r--r-- | emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 36f2d58..a717f22 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -180,7 +180,7 @@ (markdown-disable-tooltip-prompt t) ; When inserting a link, only prompt for url and link text (markdown-enable-html nil) ; I don't believe markdown should have html (markdown-hide-urls t) ; Make inline urls look a bit neater - (markdown-url-compose-char ?🔗) + (markdown-url-compose-char ?~) ;; :hook ((markdown-mode . noa/set-buffer-name-to-markdown-title)) ) |