commit 91ab0c09d6342514bec71e925904cfcbde1ef4bd parent 072ae004565a87f36ceef6454a593e98a37aaec9 Author: Lukas Henkel <lh@entf.net> Date: Thu, 15 Jul 2021 19:42:28 +0200 JSON mode Diffstat:
M | config.org | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/config.org b/config.org @@ -324,6 +324,14 @@ Using the language server protocol, we can support a lot of different programmin (use-package dap-mode :straight t) #+end_src +** JSON +#+begin_src emacs-lisp + (use-package json-mode + :straight t + :hook (json-mode . flymake-json-load)) + (use-package flymake-json + :straight t) +#+end_src * Other packages ** Magit Magit is a git UI for Emacs.