Add :lang zig
module
This commit is contained in:
parent
ce65645fb8
commit
28705030e0
5 changed files with 53 additions and 0 deletions
13
modules/lang/zig/doctor.el
Normal file
13
modules/lang/zig/doctor.el
Normal file
|
@ -0,0 +1,13 @@
|
|||
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
||||
;;; lang/zig/doctor.el
|
||||
|
||||
(assert! (or (not (featurep! +lsp))
|
||||
(featurep! :tools lsp))
|
||||
"This module requires (:tools lsp)")
|
||||
|
||||
(unless (executable-find "zig")
|
||||
(warn! "Couldn't find zig binary"))
|
||||
|
||||
(when (featurep! +lsp)
|
||||
(unless (executable-find "zls")
|
||||
(warn! "Couldn't find zls binary")))
|
Loading…
Add table
Add a link
Reference in a new issue