Files
doomemacs/modules/lang/janet/packages.el
Henrik Lissner a51690f033 fix(:lang): add treesit-available-p checks to *-ts-mode packages
Otherwise package installation will throw Emacs version errors for users
on 28 and under.
2025-09-01 20:11:02 +02:00

12 lines
354 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/janet/packages.el
(package! janet-mode
:recipe (:files ("*.el"))
:pin "9e3254a0249d720d5fa5603f1f8c3ed0612695af")
(when (and (modulep! +tree-sitter) (treesit-available-p))
(package! janet-ts-mode
:recipe (:host github :repo "sogaiu/janet-ts-mode")
:pin "ac684edf57e4d4e085cf99d5ad2ee084b46b8123"))