From bc58da7c78eef3b4a38743724337c22fa831eb14 Mon Sep 17 00:00:00 2001 From: Ellis Kenyo Date: Wed, 13 Sep 2023 10:10:30 +0100 Subject: [PATCH] fix(zig): correct doctor check --- modules/lang/zig/doctor.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/zig/doctor.el b/modules/lang/zig/doctor.el index 38b1bec3a..48668cef3 100644 --- a/modules/lang/zig/doctor.el +++ b/modules/lang/zig/doctor.el @@ -12,7 +12,7 @@ (unless (executable-find "zig") (warn! "Couldn't find zig binary") - (when (modulep! :editor format) + (unless (modulep! :editor format) (warn! "Formatting will be disabled"))) (when (modulep! +lsp)