summaryrefslogblamecommitdiff
path: root/config/init-json.el
blob: 7f0cfcb92dc89dd47699bed2b911bb637bfdb17d (plain) (tree)






















                                                              
;;; 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