Added Emacs modes for JSON and Markdown

This commit is contained in:
Fabio Scotto di Santolo
2025-12-27 14:11:16 +01:00
parent 07dfd8687a
commit 07795b9f04
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
;;; json.el -*- lexical-binding: t -*-
(use-package json-mode
:ensure t)
(provide 'json)
;;; json.el ends here

View File

@@ -0,0 +1,8 @@
;;; markdown.el -*- lexical-binding: t; -*-
(use-package markdown-mode
:ensure t
:mode ("README\\.md\\'" . gfm-mode)
:init (setq markdown-command "multimarkdown"))
(provide 'markdown)
;;; markdown.el ends here