mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
13 lines
379 B
EmacsLisp
13 lines
379 B
EmacsLisp
;;; lang/dart/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(assert! (or (not (modulep! +lsp))
|
|
(modulep! :tools lsp))
|
|
"This module requires (:tools lsp)")
|
|
|
|
(assert! (or (not (modulep! +tree-sitter))
|
|
(modulep! :tools tree-sitter))
|
|
"This module requires (:tools tree-sitter)")
|
|
|
|
(unless (executable-find "dart")
|
|
(warn! "Dart isn't on PATH."))
|