doomemacs/modules/lang/json/config.el
Jeetaditya Chatterjee 7f814e5d99
refactor(:lang): redo tree-sitter hooks
- bind to major-mode-local-vars-hook instead of major mode hook
- bind the autodef tree-sitter! instead of the functions.
2022-05-22 21:26:08 +01:00

36 lines
966 B
EmacsLisp

;;; lang/json/config.el -*- lexical-binding: t; -*-
(use-package! json-mode
:mode "\\.js\\(?:on\\|[hl]int\\(?:rc\\)?\\)\\'"
:init
(when (featurep! +lsp)
(add-hook 'json-mode-local-vars-hook #'lsp! 'append))
:config
(set-electric! 'json-mode :chars '(?\n ?: ?{ ?}))
(map! :after json-mode
:map json-mode-map
:localleader
:desc "Copy path" "p" #'json-mode-show-path
"t" #'json-toggle-boolean
"d" #'json-mode-kill-path
"x" #'json-nullify-sexp
"+" #'json-increment-number-at-point
"-" #'json-decrement-number-at-point
"f" #'json-mode-beautify))
(use-package! counsel-jq
:when (featurep! :completion ivy)
:defer t
:init
(map! :after json-mode
:map json-mode-map
:localleader
"s" #'counsel-jq))
(eval-when! (featurep! +tree-sitter)
(add-hook! '(json-mode-local-vars-hook
jsonc-mode-local-vars-hook)
#'tree-sitter!))