mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-02 06:55:08 +03:00
35 lines
452 B
Markdown
35 lines
452 B
Markdown
<div align="center">
|
|
<h1>Emacs Hurl</h1>
|
|
|
|
Emacs major mode for Hurl.
|
|
|
|
</div>
|
|
|
|
---
|
|
|
|
## Features
|
|
|
|
- Keyword highlight
|
|
|
|
## Installation
|
|
|
|
### Doom Emacs
|
|
|
|
in `packages.el`
|
|
|
|
``` lisp
|
|
(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" :files ("contrib/emacs/*.el")))
|
|
|
|
```
|