[Emacs] Fix issue with markdown-mode configuration

Double configuration for markdown-mode
This commit is contained in:
Lucien Cartier-Tilet 2021-10-25 16:59:07 +02:00
parent 7e8a6866e3
commit e65653dbe0
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 5 additions and 2 deletions

View File

@ -3188,7 +3188,7 @@ table of content of my files to quickly jump around my file (I have
for org files that will be hosted and viewable on Github.
#+begin_src emacs-lisp
(use-package toc-org
:after org
:after (org markdown-mode)
:straight (:build t)
:init
(add-to-list 'org-tag-alist '("TOC" . ?T))
@ -4410,7 +4410,7 @@ unfortunately.
#+begin_src emacs-lisp
(use-package markdown-mode
:defer t
:straight (:build t)
:straight t
:mode
(("\\.mkd\\'" . markdown-mode)
("\\.mdk\\'" . markdown-mode)
@ -4508,6 +4508,7 @@ able to render Markdown through its API.
#+begin_src emacs-lisp
(use-package gh-md
:defer t
:after markdown-mode
:straight (:build t)
:general
(:keymaps 'markdown-mode-map
@ -4521,6 +4522,7 @@ with the ~toc-org~ package for org-mode.
#+begin_src emacs-lisp
(use-package markdown-toc
:defer t
:after markdown-mode
:straight (:build t)
:general
(:keymaps 'markdown-mode-map
@ -4534,6 +4536,7 @@ Markdown file quickly. Thats neat!
#+begin_src emacs-lisp
(use-package vmd-mode
:defer t
:after markdown-mode
:straight (:build t)
:custom ((vmd-binary-path (executable-find "vmd")))
:general