Update emacs mode installation

This commit is contained in:
azzamsa 2022-12-17 05:39:55 +07:00 committed by jcamiel
parent fbca04e38f
commit b5e72568b7
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC

View File

@ -18,12 +18,17 @@ Emacs major mode for Hurl.
in `packages.el`
``` lisp
(package! hurl-mode :recipe (:host github :repo "Orange-OpenSource/hurl"))
(package! hurl-mode :recipe
(:host github
:repo "Orange-OpenSource/hurl"
:files ("contrib/emacs/*.el")))
```
### straight.el
``` lisp
(straight-use-package
'(hurl-mode :type git :host github :repo "Orange-OpenSource/hurl"))
'(hurl-mode
:type git :host github :repo "Orange-OpenSource/hurl" :files ("contrib/emacs/*.el")))
```