mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-06 15:13:33 -05:00
feat(lua): add treesit support
This commit is contained in:
13
modules/lang/lua/doctor.el
Normal file
13
modules/lang/lua/doctor.el
Normal file
@@ -0,0 +1,13 @@
|
||||
;;; lang/lua/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)")
|
||||
|
||||
(assert! (or (not (modulep! +tree-sitter))
|
||||
(fboundp 'lua-ts-mode))
|
||||
"Can't find `lua-ts-mode'; Emacs 30.1+ is required")
|
Reference in New Issue
Block a user