Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.
Lucas Werkmeister edited this page Nov 19, 2015 · 1 revision

Put this in your ~/.emacs file:

(setq rcirc-server-alist
      '(("irc.gitter.im"
         :port 6697
         :encryption tls
         :user "your-user-name"
         :password "your-token" ; from https://irc.gitter.im/
         :channels ("#gitterHQ/irc-bridge" "#project/channel" "#etc")))) ; note: `#` required

Notes:

  • This requires Emacs 24; Emacs 23 doesn’t have out-of-the-box support for SSL. The Emacs wiki has a workaround that you can try.
  • This overwrites your previous rcirc-server-alist; if you don’t want that, try appending to it instead with (push '("irc.gitter.im" …) rcirc-server-alist).
Clone this wiki locally