mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-01-06 17:22:53 -08:00
8 lines
239 B
EmacsLisp
8 lines
239 B
EmacsLisp
;;; lang/dart/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(assert! (or (not (featurep! +lsp))
|
|
(featurep! :tools lsp))
|
|
"This module requires (:tools lsp)")
|
|
|
|
(unless (executable-find "dart")
|
|
(warn! "Dart isn't on PATH."))
|