25 lines
476 B
EmacsLisp
25 lines
476 B
EmacsLisp
;;; client.el --- Set up network stuff. -*- lexical-binding: t; -*-
|
|
|
|
;; Time-stamp: <2019-11-09T11:43:07+00: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
|