Move elisp into a folder and switch to emacs-wayland on linux.

This commit is contained in:
Tom Alexander
2023-09-08 11:26:46 -04:00
parent c9617dd3cc
commit ed25cd6d31
22 changed files with 7 additions and 23 deletions

View 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)