From 325a966ac43d3b26e30435f4b43ae9b8329f1efd Mon Sep 17 00:00:00 2001 From: dej4vu Date: Wed, 2 Oct 2024 01:10:59 +0800 Subject: [PATCH] add json mode --- init.el | 1 + lisp/init-json.el | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 lisp/init-json.el diff --git a/init.el b/init.el index fc4b0eb..1b10ed9 100644 --- a/init.el +++ b/init.el @@ -55,6 +55,7 @@ (require 'init-llm) (require 'init-csv) (require 'init-lua) +(require 'init-json) (when (file-exists-p custom-file) (load custom-file)) diff --git a/lisp/init-json.el b/lisp/init-json.el new file mode 100644 index 0000000..bd0fff3 --- /dev/null +++ b/lisp/init-json.el @@ -0,0 +1,4 @@ +;; json mode +(use-package json-mode) + +(provide 'init-json)