Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1005 B

  1. # Prelude ERC Quickstart
  2. ## Customizing Server list
  3. If you want to join a list of servers on `M-x start-irc`, other than the default list, please redefine the variable `my-fav-irc` as follows in your personal config
  4. ``` emacs-lisp
  5. (setq my-fav-irc '( "irc.freenode.net"
  6. "irc.oftc.net"
  7. "irc.mozilla.org"
  8. "irc.gnome.org"))
  9. ```
  10. ## Customizing Last Quit Message
  11. If you want to customize your IRC Last Quit Message from *Asta la vista* to something more funkier, please redefine `bye-irc-message` as follows
  12. ``` emacs-lisp
  13. (setq bye-erc-message "adios")
  14. ```
  15. ## Reading NickServ passwords from auth-source plugin
  16. If you want to automatically authenticate while logging into IRC servers set the `erc-prompt-for-password` to nil as follows
  17. ``` emacs-lisp
  18. (setq erc-prompt-for-password nil)
  19. ```
  20. Now you can set password in plaintext in .authinfo file in the netRC format or you it encrypted in .authinfo.gpg file after setting up gpg in emacs