cp-irc.el - rcirc

emacs-init-time to open a session showing (only) the *Messages* buffer -
before - 19.6s
after  - 18.6s
This commit is contained in:
Kashish Sharma 2016-06-13 22:57:44 +05:30
parent 98054963f4
commit 2e70cfabab
1 changed files with 15 additions and 12 deletions

View File

@ -106,15 +106,18 @@
(add-to-list 'auto-mode-alist
(cons "/erc/logs/" 'erc-log-read-mode))
(require 'rcirc)
(setq
rcirc-log-flag t
rcirc-time-format "%Y %m %e %T "
rcirc-fill-column 80
rcirc-server-alist '(("irc.freenode.net"
:channels ("#emacs" "#lilypond" "#velvetandlace" "#opensourcemusicians"
"##classical" "##guitar" "##deutsch" "##hindi")
:password "trololo_trololo"))
rcirc-default-nick "contrapunctus"
;; rcirc-coding-system-alist '(("" . 'utf-8))
)
(with-eval-after-load 'rcirc
(setq
rcirc-log-flag t
rcirc-time-format "%Y %m %e %T "
rcirc-fill-column 80
rcirc-server-alist '(("irc.freenode.net"
:channels
("#emacs" "#lilypond" "#velvetandlace"
"#opensourcemusicians" "##classical"
"##guitar" "##deutsch" "##hindi")
:password
"trololo_trololo"))
rcirc-default-nick "contrapunctus"
;; rcirc-coding-system-alist '(("" . 'utf-8))
))