mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Use :when instead of (when ...)
This commit is contained in:
@ -15,11 +15,11 @@
|
||||
|
||||
|
||||
|
||||
(when (featurep! :completion ivy)
|
||||
(use-package! counsel-jq
|
||||
:defer t
|
||||
:init
|
||||
(map! :after json-mode
|
||||
:map json-mode-map
|
||||
:localleader
|
||||
"s" #'counsel-jq)))
|
||||
(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