2020-02-15 12:22:01 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/dart/packages.el
|
|
|
|
|
2020-03-16 00:02:16 +03:30
|
|
|
(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)
|
2020-03-16 00:02:16 +03:30
|
|
|
(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"))
|