summary refs log tree commit diff
diff options
context:
space:
mode:
authornoa2024-10-24 15:13:17 +0800
committernoa2024-10-24 15:13:17 +0800
commit572b7e1f4bf6d26758ee922d61cdb8f84de29011 (patch)
tree9542e6ce0f0294d61557e8a96e2ccb87e8a66cb0
parent15f98041ccd137caaa27d7c82c539e0cf1d73fde (diff)
Change character used for hiding markdown urls
-rw-r--r--emacs/init.el2
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))
   )