diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-10-09 13:29:28 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-10-09 13:29:28 -0400 |
commit | 65c55702cb6104cc7cd426cf03546727743b1fc5 (patch) | |
tree | e8547fad3ceca33ec423b8914052575a450bdf1b | |
parent | 8d5d18c14d5567afa5a643faa9764a89c0b2ad74 (diff) |
emacs: Update erc config.
-rw-r--r-- | dotfiles/.emacs.d/erc.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dotfiles/.emacs.d/erc.el b/dotfiles/.emacs.d/erc.el index f507f7c..9597835 100644 --- a/dotfiles/.emacs.d/erc.el +++ b/dotfiles/.emacs.d/erc.el @@ -73,7 +73,7 @@ (erc-autojoin-mode t) (setq erc-autojoin-channels-alist '(("freenode.net" "#guile" "#guix" "#emacs" "#scheme" - "#lispgames" "#fsf" "#gnu" "##wizards" "#sly" "#userops") + "#lispgames" "#fsf" "#gnu" "##wizards" "#sly") ("slack.com" "#general" "#random" "#ops" "#techeng" "#church-of-emacs"))) @@ -99,7 +99,11 @@ (erc-tls :server "irc.freenode.net" :port 6697 :nick erc-nick - :password freenode-password) + :password freenode-password)) + +(defun start-slack () + "Connect to Slack." + (interactive) (erc-tls :server "vhl.irc.slack.com" :port 6697 :nick erc-nick |