mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
9 lines
239 B
EmacsLisp
9 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."))
|