doomemacs/modules/lang/dart/packages.el

19 lines
474 B
EmacsLisp
Raw Normal View History

2020-02-15 12:22:01 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/dart/packages.el
(package! dart-mode :pin "04fcd649f1")
2020-03-24 13:45:36 +04:30
;; Optional module features
2020-02-15 12:22:01 -05:00
(when (featurep! +flutter)
(package! flutter :pin "ec92a4df84"))
2020-03-24 13:45:36 +04:30
;; Features according to other user selected options
(when (featurep! :editor snippets)
(package! dart-snippets
:recipe (:host github
:repo "MYDavoodeh/dart-snippets"
:files ("*.el" ("snippets" "snippets/*")))
2020-03-24 18:48:18 +04:30
:pin "946ad5aaa5"))