summary refs log tree commit diff
path: root/emacs.d/modules/module-json.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/modules/module-json.el')
-rw-r--r--emacs.d/modules/module-json.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/emacs.d/modules/module-json.el b/emacs.d/modules/module-json.el
deleted file mode 100644
index aa34a3e..0000000
--- a/emacs.d/modules/module-json.el
+++ /dev/null
@@ -1,20 +0,0 @@
-(require 'config-package)
-
-(use-package json-mode
-  :mode "\\.json$|\\.workflow$'"
-
-  :config
-  (setq json-reformat:indent-width 2)
-
-  :bind (:map json-mode-map
-              ("C-z" . hydra-json/body)))
-
-(defhydra hydra-json (:hint nil :exit t)
-"
-^Command^
-_f_: format
-"
-  ("f" json-reformat-region)
-  ("q" nil "quit" :color blue))
-
-(provide 'module-json)