yeet
This commit is contained in:
31
.config/emacs/modules/lang/json/config.el
Normal file
31
.config/emacs/modules/lang/json/config.el
Normal file
@@ -0,0 +1,31 @@
|
||||
;;; 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!))
|
||||
: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))
|
||||
Reference in New Issue
Block a user