summary refs log tree commit diff
path: root/config/init-json.el
blob: 7f0cfcb92dc89dd47699bed2b911bb637bfdb17d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;; init-json.el --- Configure JSON -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; Commentary:

;; configure json-mode and jq-mode

;;; Code:

(use-package json-mode
  :mode "\\.json\\'")

(use-package json-reformat
  :ensure t
  :after json-mode)

(use-package jq-mode
  :ensure t
  :mode "\\.jq\\'")

(provide 'init-json)

;;; init-json.el ends here