16 lines
446 B
EmacsLisp
16 lines
446 B
EmacsLisp
;;; 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
|