mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 19:40:24 +10:00
10 lines
364 B
EmacsLisp
10 lines
364 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; 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."))
|
|
|