mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-18 16:06:56 -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