Move elisp into a folder and switch to emacs-wayland on linux.
This commit is contained in:
12
ansible/roles/emacs/files/elisp/lang-markdown.el
Normal file
12
ansible/roles/emacs/files/elisp/lang-markdown.el
Normal file
@@ -0,0 +1,12 @@
|
||||
(use-package markdown-mode
|
||||
:ensure t
|
||||
:commands (markdown-mode gfm-mode)
|
||||
:mode (("README\\.md\\'" . gfm-mode)
|
||||
("\\.md\\'" . markdown-mode)
|
||||
("\\.markdown\\'" . markdown-mode))
|
||||
:init (setq markdown-command "multimarkdown"))
|
||||
|
||||
;; For code block editing
|
||||
(use-package edit-indirect)
|
||||
|
||||
(provide 'lang-markdown)
|
||||
Reference in New Issue
Block a user