Atom is an excellent open source text editor that I have switched to recently. Atom requires a network connection to update itself, install packages etc. This usually just works out-of-the-box.
However, if you are behind a proxy server, the proxy settings for Atom can be specified as below. Run the commands below at the OS's command line.
Specify The Proxy Server In Atom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apm config set http-proxy [http://username:password@proxy.server.url.com:80] | |
apm config set https-proxy [http://username:password@proxy.server.url.com:80] |
Verify The Proxy Server Specified In Atom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apm config get http-proxy | |
apm config get https-proxy |