Files
doomemacs/modules/lang/sml/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

11 lines
462 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/sml/packages.el
(package! sml-mode :pin "c33659fd9b62fab436366f731daa4339691dd6bf")
(when (modulep! :completion company)
(package! company-mlton
:recipe (:host github :repo "MatthewFluet/company-mlton" :files ("*.el" "*.basis"))
:pin "9b09d209b4767a2af24784fb5321390ed1d445bf"))
(when (and (modulep! +tree-sitter) (treesit-available-p))
(package! sml-ts-mode :pin "d2dabcc9d8f91eeee7048641e4c80fabb3583194"))