summary refs log tree commit diff
path: root/emacs.d/config/fcuny-json.el
blob: 91c682be90c1412fea064e1b6f791ccf3d5db7a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(eval-when-compile
  (require 'use-package))

(use-package json-mode
  :ensure t
  :config
  (setq json-reformat:indent-width 2)
  (if (fc/check-work-machine-p)
    (add-to-list 'auto-mode-alist '("\\.workflow$" . json-mode))))

(provide 'fcuny-json)