mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-05 12:37:33 -05:00
10 lines
323 B
EmacsLisp
10 lines
323 B
EmacsLisp
;;; lang/json/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(when (and (modulep! :completion ivy)
|
|
(not (executable-find "jq")))
|
|
(warn! "Couldn't find jq. counsel-jq won't work." ))
|
|
|
|
(assert! (or (modulep! -tree-sitter)
|
|
(modulep! :tools tree-sitter))
|
|
"This module requires (:tools tree-sitter)")
|