From 7c5780a719565630f58e7751afa8c7e458c49871 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 6 Apr 2024 11:22:57 -0700 Subject: a org file is definitely not the way for me --- config/init-json.el | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 config/init-json.el (limited to 'config/init-json.el') diff --git a/config/init-json.el b/config/init-json.el new file mode 100644 index 0000000..7f0cfcb --- /dev/null +++ b/config/init-json.el @@ -0,0 +1,23 @@ +;;; init-json.el --- Configure JSON -*- lexical-binding: t -*- +;; Author: Franck Cuny + +;;; Commentary: + +;; configure json-mode and jq-mode + +;;; Code: + +(use-package json-mode + :mode "\\.json\\'") + +(use-package json-reformat + :ensure t + :after json-mode) + +(use-package jq-mode + :ensure t + :mode "\\.jq\\'") + +(provide 'init-json) + +;;; init-json.el ends here -- cgit 1.4.1