summaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-restclient.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/lisp/init-restclient.el b/lisp/init-restclient.el
deleted file mode 100644
index 542325d..0000000
--- a/lisp/init-restclient.el
+++ /dev/null
@@ -1,17 +0,0 @@
-;;; init-restclient.el --- configure restclient -*- lexical-binding:t -*-
-;;; Commentary:
-;;; Code:
-
-(use-package restclient
- :ensure t
- :init
- ;; limit number of times vars are substituted
- (setq restclient-vars-max-passes 2)
- ;; use matching client certificates from ~/.authinfo
- (setq network-stream-use-client-certificates t)
- ;; use this mode for .http extension
- :mode (("\\.http\\'" . restclient-mode)))
-
-(provide 'init-restclient)
-
-;;; init-restclient.el ends here