Skip to content

Instantly share code, notes, and snippets.

@mbauhardt
Created March 24, 2013 17:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbauhardt/5232751 to your computer and use it in GitHub Desktop.
Save mbauhardt/5232751 to your computer and use it in GitHub Desktop.
my emacs el file to setup erc with ssl
(require 'erc-services)
(erc-services-mode 1)
(eval-after-load "erc"
'(progn
(setq erc-prompt-for-nickserv-password "")))
;; Set autoconnect networks
(defun my-erc ()
"Connect to my default ERC servers."
(interactive)
(erc-tls :server "irc.freenode.net" :port 7000 :nick "<mynick>" :full-name "<myFullName>"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment