Added Dart-Snippets from GitHub.

This commit is contained in:
M. Yas. Davoodeh 2020-03-24 13:45:36 +04:30
parent 2b47b1e99a
commit e43e9fadb9

View file

@ -2,5 +2,17 @@
;;; lang/dart/packages.el ;;; lang/dart/packages.el
(package! dart-mode :pin "04fcd649f1") (package! dart-mode :pin "04fcd649f1")
;; Optional module features
(when (featurep! +flutter) (when (featurep! +flutter)
(package! flutter :pin "ec92a4df84")) (package! flutter :pin "ec92a4df84"))
;; 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/*")))
:pin "87ccb4defd"))