mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-18 16:06:56 -05:00
10 lines
355 B
EmacsLisp
10 lines
355 B
EmacsLisp
;;; tools/tree-sitter/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(unless (featurep 'dynamic-modules)
|
|
(error! "Emacs not built with dynamic modules support"))
|
|
|
|
(if (version< emacs-version "29.1")
|
|
(error! "Emacs 29.1 or newer is required for tree-sitter support")
|
|
(unless (treesit-available-p)
|
|
(error! "Emacs not built with tree-sitter support!")))
|