[Emacs] Fix issue with markdown-mode configuration
Double configuration for markdown-mode
This commit is contained in:
parent
7e8a6866e3
commit
e65653dbe0
@ -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.
|
for org files that will be hosted and viewable on Github.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package toc-org
|
(use-package toc-org
|
||||||
:after org
|
:after (org markdown-mode)
|
||||||
:straight (:build t)
|
:straight (:build t)
|
||||||
:init
|
:init
|
||||||
(add-to-list 'org-tag-alist '("TOC" . ?T))
|
(add-to-list 'org-tag-alist '("TOC" . ?T))
|
||||||
@ -4410,7 +4410,7 @@ unfortunately.
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package markdown-mode
|
(use-package markdown-mode
|
||||||
:defer t
|
:defer t
|
||||||
:straight (:build t)
|
:straight t
|
||||||
:mode
|
:mode
|
||||||
(("\\.mkd\\'" . markdown-mode)
|
(("\\.mkd\\'" . markdown-mode)
|
||||||
("\\.mdk\\'" . markdown-mode)
|
("\\.mdk\\'" . markdown-mode)
|
||||||
@ -4508,6 +4508,7 @@ able to render Markdown through its API.
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package gh-md
|
(use-package gh-md
|
||||||
:defer t
|
:defer t
|
||||||
|
:after markdown-mode
|
||||||
:straight (:build t)
|
:straight (:build t)
|
||||||
:general
|
:general
|
||||||
(:keymaps 'markdown-mode-map
|
(:keymaps 'markdown-mode-map
|
||||||
@ -4521,6 +4522,7 @@ with the ~toc-org~ package for org-mode.
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package markdown-toc
|
(use-package markdown-toc
|
||||||
:defer t
|
:defer t
|
||||||
|
:after markdown-mode
|
||||||
:straight (:build t)
|
:straight (:build t)
|
||||||
:general
|
:general
|
||||||
(:keymaps 'markdown-mode-map
|
(:keymaps 'markdown-mode-map
|
||||||
@ -4534,6 +4536,7 @@ Markdown file quickly. That’s neat!
|
|||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package vmd-mode
|
(use-package vmd-mode
|
||||||
:defer t
|
:defer t
|
||||||
|
:after markdown-mode
|
||||||
:straight (:build t)
|
:straight (:build t)
|
||||||
:custom ((vmd-binary-path (executable-find "vmd")))
|
:custom ((vmd-binary-path (executable-find "vmd")))
|
||||||
:general
|
:general
|
||||||
|
Loading…
Reference in New Issue
Block a user