.emacs.d/init/net/client.el

25 lines
476 B
EmacsLisp
Raw Normal View History

;;; client.el --- Set up network stuff. -*- lexical-binding: t; -*-
2019-11-04 21:10:34 +01:00
;; Time-stamp: <2019-11-09T11:43:07+00:00>
2019-11-04 21:10:34 +01:00
;;; Commentary:
;;; Code:
;; Explore and test HTTP REST webservices.
(use-package restclient
:mode
("\\.restclient$" . restclient-mode)
)
;; Company completion for restclient.
(use-package company-restclient
:after (restclient company)
:config
(add-to-list 'company-backends 'company-restclient)
)
(provide 'net/client)
;;; client.el ends here