Files
doomemacs/modules/lang/graphql/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
508 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/graphql/packages.el
(package! graphql-mode :pin "ee49531935ede7a2c9597713e13a4c9d33ef2220")
(package! graphql-doc :pin "17755a2466a1acef68eac664093fcd13cd51494a")
(unless (modulep! +lsp)
(package! company-graphql
:recipe (:host github :repo "thaenalpha/company-graphql")
:pin "aed9f5109e877944a895d08fc08bad103f03096b"))
(when (and (modulep! +tree-sitter) (treesit-available-p))
(package! graphql-ts-mode :pin "e933f235408ea195762700fd07c2d828e8f09aac"))