summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs.d/custom/fcuny-json.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs.d/custom/fcuny-json.el b/emacs.d/custom/fcuny-json.el
index 9174e5b..14ea06c 100644
--- a/emacs.d/custom/fcuny-json.el
+++ b/emacs.d/custom/fcuny-json.el
@@ -1,6 +1,6 @@
(require 'fcuny-defuns)
-(use-package json-mode
+(use-package js-mode
:after (flyspell flycheck)
:custom
(json-reformat:indent-width 2)
@@ -9,6 +9,6 @@
(json-mode . flycheck-mode))
:init
(if (fcuny/check-work-machine-p)
- (add-to-list 'auto-mode-alist '("\\.workflow$" . json-mode))))
+ (add-to-list 'auto-mode-alist '("\\.workflow$" . js-mode))))
(provide 'fcuny-json)