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.

18 lines
660 B

  1. ;; Join the a couple of interesting channels whenever connecting to Freenode.
  2. (setq erc-autojoin-channels-alist '(("freenode.net"
  3. "#emacs" "#ruby" "#lisp" "#clojure"
  4. "#scala" "#haskell")))
  5. ;; set your nickname
  6. (setq erc-nick "bozhidar")
  7. ;; share your username (optional)
  8. (setq erc-user-full-name "Bozhidar Batsov")
  9. ;; auto identify
  10. (when (file-exists-p (expand-file-name "~/.ercpass"))
  11. (load "~/.ercpass")
  12. (require 'erc-services)
  13. (erc-services-mode 1)
  14. (setq erc-prompt-for-nickserv-password nil)
  15. (setq erc-nickserv-passwords
  16. `((freenode ((erc-nick . ,erc-pass))))))