diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 629833d..d75a027 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -475,6 +475,14 @@ (add-to-list 'auto-mode-alist '("\\.\\(?:md\\|markdown\\|mkd\\|mdown\\|mkdn\\|mdwn\\)\\'" . markdown-mode)) +;; When inserting a link, only prompt for url and link text +(setopt markdown-disable-tooltip-prompt t) + +;; I don't believe markdown should have html +(setopt markdown-enable-html nil) + +(setopt markdown-hide-urls t) +(setopt markdown-url-compose-char ?🔗) ;; Autocorrection |