From 67c2168998c829c8739a0a4f73ab9d6117d07f0a Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 16 Feb 2019 14:10:22 -0800 Subject: [emacs] Split configuration in multiple files. This is actually an easier thing to maintain. --- emacs.d/custom/fcuny-json.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 emacs.d/custom/fcuny-json.el (limited to 'emacs.d/custom/fcuny-json.el') diff --git a/emacs.d/custom/fcuny-json.el b/emacs.d/custom/fcuny-json.el new file mode 100644 index 0000000..126ed03 --- /dev/null +++ b/emacs.d/custom/fcuny-json.el @@ -0,0 +1,14 @@ +(require 'fcuny-common) + +(use-package json-mode + :after (flyspell flycheck) + :custom + (json-reformat:indent-width 2) + (js-indent-level 2) + :hook ((json-mode . flyspell-prog-mode) + (json-mode . flycheck-mode)) + :init + (if (fcuny/check-work-machine-p) + (add-to-list 'auto-mode-alist '("\\.workflow$" . json-mode)))) + +(provide 'fcuny-json) -- cgit 1.4.1