Add module-rest (restclient)

This commit is contained in:
Henrik Lissner 2016-05-24 22:12:19 -04:00
parent ec9c12e17e
commit 2052fbba1c
3 changed files with 17 additions and 0 deletions

12
modules/module-rest.el Normal file
View file

@ -0,0 +1,12 @@
;;; module-rest.el
(use-package restclient
:commands restclient-mode
:mode ("\\.http$" . restclient-mode)
:config (def-popup! "*HTTP Response*" :size 25))
(use-package company-restclient
:after restclient)
(provide 'module-rest)
;;; module-rest.el ends here