[Emacs, Bootstrap] Remove vmd-mode, I never use it

Also remove package nodejs-vmd, since the only reason for me to have
it is vmd-mode
This commit is contained in:
Lucien Cartier-Tilet 2022-12-16 14:41:40 +01:00
parent 24f32a7589
commit 6992442453
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
3 changed files with 0 additions and 17 deletions

View File

@ -135,7 +135,6 @@ linux-headers \
lldb \
meson \
mupdf-tools \
nodejs-vmd \
npm \
pacman-contrib \
pandoc-bin \

View File

@ -313,7 +313,6 @@ For development purposes, I need the following packages:
| lldb | The LLVM debugger |
| meson | Meson build system |
| mupdf-tools | Tools for PDF and XPS viewers |
| nodejs-vmd | Markdown renderer and live previewer |
| npm | Javascript package manager |
| pacman-contrib | Create and install custom ArchLinux packages |
| pandoc-bin | Convert documents of various formats into other formats |

View File

@ -6653,21 +6653,6 @@ with the ~toc-org~ package for org-mode.
"iT" #'markdown-toc-generate-toc))
#+end_src
~vmd-mode~ allows the user to live-preview their Github-flavored
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
(phundrak/major-leader-key
:packages 'vmd-mode
:keymaps 'markdown-mode-map
"cP" #'vmd-mode))
#+end_src
Lastly, ~edit-indirect~ is a package that allows to edit code blocks as
in org-mode but with other major modes, such as code blocks in
Markdown.