feat(qt): add treesit (and lsp) support

This commit is contained in:
Henrik Lissner
2025-08-28 14:00:48 +02:00
parent cfadd8f6a4
commit 93c085fa13
4 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
;;; lang/qt/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)")