Skip to content

Instantly share code, notes, and snippets.

@hiyosi
Created November 3, 2011 12:15
Show Gist options
  • Save hiyosi/1336353 to your computer and use it in GitHub Desktop.
Save hiyosi/1336353 to your computer and use it in GitHub Desktop.
riece
(defun my-ring() (let ((ring-bell-function nil)
(visible-bell t))
(while (progn
(ding)
(sit-for 0.5)))))
(setq riece-server-alist
'(("freenode" :host "irc.freenode.org" :nickname "hiyosi")))
(setq riece-server "freenode")
(setq riece-startup-channel-list
'("#erlang"))
;; 終了時にバッファを削除する
(add-to-list 'riece-addons 'riece-shrink-buffer)
;; add-on : 他のバッファにいる時に発言があるとモードラインに印 ("[R]") を表示
(add-to-list 'riece-addons 'riece-biff)
;; add-on : コントロールシーケンス (^B など) による強調表示
(add-to-list 'riece-addons 'riece-ctlseq)
;; add-on : IRC サーバとの接続を保持
(add-to-list 'riece-addons 'riece-keepalive)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment