Skip to content

Instantly share code, notes, and snippets.

@ynakao
Last active January 14, 2023 07:36
Show Gist options
  • Save ynakao/29e8b3b0e0713a2820b2cad3abd15b54 to your computer and use it in GitHub Desktop.
Save ynakao/29e8b3b0e0713a2820b2cad3abd15b54 to your computer and use it in GitHub Desktop.
Circe to znc example
(use-package circe
:config
(setq circe-network-options
(quote
(("freenode-znc"
:host "znc.example.com"
:use-tls t
:port 6697
:user "zncusername/zncfreenode" ;; `zncfreenode` is freenode network name at your znc server
:pass "zncpassword")
("mozilla-znc"
:host "znc.example.com"
:use-tls t
:port 6697
:user "zncusername/zncmozilla"
:pass "zncpassword")
("oftc-znc"
:host "znc.example.com"
:use-tls t
:port 6697
:user "zncusername/zncoftc"
:pass "zncpassword")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment