25 lines
477 B
EmacsLisp
25 lines
477 B
EmacsLisp
|
;;; client.el --- Set up network stuff.. -*- lexical-binding: t; -*-
|
||
|
|
||
|
;; Time-stamp: <2019-11-04T19:54:18+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
|