summaryrefslogtreecommitdiffstats
path: root/lisp/init-restclient.el
blob: f65a31c20394d3118b13fe89a6e98517283140a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
(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))

(provide 'init-restclient)