extracted some user specific ERC settings into a sample

personal-erc.el that others can use in their personal Prelude folder
This commit is contained in:
Bozhidar Batsov 2011-11-23 23:19:59 +02:00
parent 73bd5118fc
commit 6eba2006ff
2 changed files with 19 additions and 18 deletions

18
samples/personal-erc.el Normal file
View file

@ -0,0 +1,18 @@
;; Join the a couple of interesting channels whenever connecting to Freenode.
(setq erc-autojoin-channels-alist '(("freenode.net"
"#emacs" "#ruby" "#lisp" "#clojure"
"#scala" "#haskell")))
;; set your nickname
(setq erc-nick "bozhidar")
;; share your username (optional)
(setq erc-user-full-name "Bozhidar Batsov")
;; auto identify
(when (file-exists-p (expand-file-name "~/.ercpass"))
(load "~/.ercpass")
(require 'erc-services)
(erc-services-mode 1)
(setq erc-prompt-for-nickserv-password nil)
(setq erc-nickserv-passwords
`((freenode ((erc-nick . ,erc-pass))))))