erc: update documentation for layer variables

This commit is contained in:
syl20bnr 2017-08-27 22:54:04 -04:00
parent b804aef694
commit e7205e0097
1 changed files with 20 additions and 0 deletions

View File

@ -7,6 +7,8 @@
- [[#layer][Layer]]
- [[#os-x][OS X]]
- [[#social-graph][Social graph]]
- [[#disable-notifications][Disable notifications]]
- [[#enable-sasl-authentication][Enable SASL authentication]]
- [[#default-servers][Default servers]]
- [[#security-note][Security Note]]
- [[#key-bindings][Key bindings]]
@ -41,6 +43,24 @@ notifications via the OS X Notification Center.
** Social graph
[[https://github.com/vibhavp/erc-social-graph][erc-social-graph]] needs graphviz to be installed on your system.
** Disable notifications
By default D-BUS notifications are enabled, to disable them set the layer
variable =erc-enable-notifications= to nil.
#+BEGIN_EXAMPLE emacs-lisp
(setq-default dotspacemacs-configuration-layers
'((erc :variables erc-enable-notifications nil)))
#+END_EXAMPLE
** Enable SASL authentication
To enable SASL authentication set the layer variable =erc-enable-sasl-auth= to
non nil.
#+BEGIN_EXAMPLE emacs-lisp
(setq-default dotspacemacs-configuration-layers
'((erc :variables erc-enable-sasl-auth t)))
#+END_EXAMPLE
** Default servers
You can define the default servers in the ERC custom layout by setting the
variable =erc-server-list=. Setting =:ssl= non nil will connect with =erc-tls=.