app/irc: initial commit
This commit is contained in:
parent
62d4180d9d
commit
9645945465
5 changed files with 202 additions and 0 deletions
19
modules/app/irc/README.org
Normal file
19
modules/app/irc/README.org
Normal file
|
@ -0,0 +1,19 @@
|
|||
* :app irc
|
||||
|
||||
This module makes Emacs an irc client, using [[https://github.com/jorgenschaefer/circe][~circe~]].
|
||||
|
||||
** Dependencies
|
||||
|
||||
I use ~pass~ to not have the passwords written in my account. It's available under ~:tools~ modules.
|
||||
If you want to use TLS you also need =openssl= or =gnutls-cli=.
|
||||
|
||||
Configure Emacs to use your favorite irc servers:
|
||||
#+BEGIN_SRC emacs-lisp :tangle no
|
||||
(set! :irc "chat.freenode.net"
|
||||
`(:tls t
|
||||
:nick "benny"
|
||||
:sasl-username ,(password-store-get "irc/freenode")
|
||||
:sasl-password ,(password-store-get "irc/freenode")
|
||||
:channels ("#emacs")))
|
||||
#+END_SRC
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue