12345678910111213141516 |
- ;;; 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
|