Add restclient package

This commit is contained in:
Jesús
2022-03-07 01:24:28 +08:00
parent aba5e59b02
commit 242f5ec765
3 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
;;; init-restclient.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;----------------------------------------------------------------------------
;; Restclient, similar to postman but in emacs
;;----------------------------------------------------------------------------
(use-package restclient
:mode ("\\.http\\'" . restclient-mode))
(provide 'init-restclient)
;; End:
;;; init-restclient.el ends here