doom-emacs/modules/lang/nim/doctor.el

12 lines
456 B
EmacsLisp
Raw Permalink Normal View History

2018-05-09 08:20:39 +00:00
;;; lang/nim/doctor.el
(unless (executable-find "nimsuggest")
(warn! "Could not find nimsuggest executable; code-completion, syntax checking and jump-to-definition functionality will be disabled."))
(unless (executable-find "nim")
(warn! "Could not find nim executable; build commands will be disabled."))
2022-08-16 19:57:40 +00:00
(when (modulep! :editor format)
(unless (executable-find "nimpretty")
(warn! "Could not find nimpretty. Formatting will be disabled.")))