init-restclient.el 446 B

12345678910111213141516
  1. ;;; init-restclient.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;;----------------------------------------------------------------------------
  6. ;; Restclient, similar to postman but in emacs
  7. ;;----------------------------------------------------------------------------
  8. (use-package restclient
  9. :mode ("\\.http\\'" . restclient-mode))
  10. (provide 'init-restclient)
  11. ;; End:
  12. ;;; init-restclient.el ends here