diff options
Diffstat (limited to 'emacs/inits/30-irc.el')
| -rw-r--r-- | emacs/inits/30-irc.el | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/emacs/inits/30-irc.el b/emacs/inits/30-irc.el index 7d3566f..0bb43ab 100644 --- a/emacs/inits/30-irc.el +++ b/emacs/inits/30-irc.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2019-01-26 12:55:41 (tslil@winslow)> +;; Time-stamp: <2020-03-17 16:18:09 (tslil@bison)> (use-package rcirc :ensure t @@ -11,7 +11,7 @@ (use-package rcirc-color :ensure t :if (window-system)) - + (require 'auth-source) (defadvice rcirc (before rcirc-read-from-authinfo activate) @@ -29,7 +29,7 @@ (if (functionp secret) (funcall secret) secret))))))) - + (setq rcirc-default-full-name "tslil" rcirc-default-nick "maximum_yellow" rcirc-default-user-name "maximum_yellow" @@ -37,9 +37,15 @@ rcirc-log-directory "~/irc/" rcirc-fill-column 80 rcirc-log-flag t - rcirc-server-alist - '(("irc.freenode.net" - :port 6697 - :encryption tls - :channels ("#emacs" "#guix") - )))) + rcirc-server-alist nil + ;; '(("irc.freenode.net" + ;; :port 6697 + ;; :encryption tls + ;; :channels ("#emacs" "#guix")) + ;; ("127.0.0.1" + ;; :port 6667 + ;; :nick "tslil" + ;; :user-name "tslil" + ;; :channels ("&bitlbee")) + ;; ) + )) |
