I am using Windows 7 64 bit, Spacemacs 0.200.9@25.1.1
I am running it behind a proxy and I want emacs know to find the proxy once it started so that it can download package for the first start of Spacemacs.
I found a partial answer:
(setq url-proxy-services
'(("http" . "http://proxy.example.com:8080")
("https" . "http://proxy.example.com:8080")))
from here and here.
But I want to know how to make emacs configure the proxy setting every time when it start up automatically.
Thank you very much.