Files
doomemacs/modules/lang/haskell/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
412 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/haskell/packages.el
(package! haskell-mode :pin "e9c356739310332afe59b10ffa2e6c3e76f124e3")
(when (and (modulep! +tree-sitter) (treesit-available-p))
(package! haskell-ts-mode :pin "b47211699944997bfb03fd88b1157dd71727bad7"))
(when (and (modulep! +lsp)
(modulep! :tools lsp -eglot))
(package! lsp-haskell :pin "081d5115ceb1f1647497a8a3de4ca0702aaadb48"))