1 ;;; bandali-erc.el --- bandali's ERC setup -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2018-2020 Amin Bandali
5 ;; Author: Amin Bandali <bandali@gnu.org>
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
23 ;; My ERC setup for IRC. It uses my fork of ZNC.el.
27 (defvar b
/erc-detach-on-kill t
28 "Whether killing a channel should send a DETACH command (for ZNC).")
30 (with-eval-after-load 'erc
31 (make-directory (b/var
"erc/dcc/") t
)
34 erc-autojoin-domain-only nil
35 erc-dcc-get-default-directory
(b/var
"erc/dcc/")
36 erc-format-nick-function
'erc-format-
@nick
38 erc-log-channels-directory
(b/var
"erc/log-channels/")
39 erc-lurker-hide-list
'("JOIN" "PART" "QUIT")
42 erc-prompt-for-password nil
44 erc-server-reconnect-attempts
5
45 erc-server-reconnect-timeout
3)
47 (declare-function erc-message
"erc-backend"
48 (message-command line
&optional force
))
49 (declare-function erc-default-target
"erc")
50 (declare-function erc-current-nick
"erc")
51 (defun erc-cmd-OPME ()
52 "Request chanserv to op me."
53 (erc-message "PRIVMSG"
54 (format "chanserv op %s %s"
56 (erc-current-nick)) nil
))
57 (declare-function erc-cmd-DEOP
"erc" (&rest people
))
58 (defun erc-cmd-DEOPME ()
59 "Deop myself from current channel."
60 (erc-cmd-DEOP (format "%s" (erc-current-nick))))
61 (add-to-list 'erc-modules
'keep-place
)
62 (add-to-list 'erc-modules
'notifications
)
63 (add-to-list 'erc-modules
'smiley
)
64 (add-to-list 'erc-modules
'spelling
)
65 (declare-function erc-update-modules
"erc")
69 'erc-nick-default-face nil
72 :foreground
"#222222")
77 ;; erc-fill-function 'erc-fill-variable
78 ;; erc-fill-static-center 18)
84 erc-pal-highlight-type
'nick
85 erc-pals
'("aindilis" "blackbeard" "brettgilio" "civodul" "dto"
86 "ggoes" "jrasata" "mplsCorwin" "rwp" "technomancy"))
87 (with-eval-after-load 'erc-match
90 :foreground
'unspecified
92 :inherit
'erc-nick-default-face
93 :background
(face-attribute 'font-lock-string-face
:background
)))
96 (csetq erc-pcomplete-nick-postfix
", ")
99 (csetq erc-timestamp-only-if-changed-flag nil
100 erc-timestamp-format
"%T "
101 erc-insert-timestamp-function
'erc-insert-timestamp-left
)
102 (with-eval-after-load 'erc-match
104 'erc-timestamp-face nil
105 :foreground
"#aaaaaa"
107 :background
'unspecified
))
111 erc-track-enable-keybindings nil
112 erc-track-exclude-types
'("JOIN" "MODE" "NICK" "PART" "QUIT"
113 "324" "329" "332" "333" "353" "477")
114 erc-track-position-in-mode-line t
115 erc-track-priority-faces-only
'all
116 erc-track-shorten-function nil
117 erc-track-showcount t
)
120 (global-set-key (kbd "C-c w e") #'erc-switch-to-buffer-other-window
)
121 (define-key erc-mode-map
(kbd "M-a") #'erc-track-switch-buffer
)
124 (defun b/erc-detach-or-kill-channel
()
125 (if b
/erc-detach-on-kill
126 (when (erc-server-process-alive)
127 (let ((tgt (erc-default-target)))
128 (erc-server-send (format "DETACH %s" tgt
) nil tgt
)))
130 (add-hook 'erc-kill-channel-hook
#'b
/erc-detach-or-kill-channel
)
131 (remove-hook 'erc-kill-channel-hook
#'erc-kill-channel
))
133 ;; global key bindings
138 (let* ((auth (auth-source-search :host
"znca"))
140 (error "Couldn't find znca's authinfo")
141 (funcall (plist-get (car auth
) :secret
)))))
142 (erc-tls :server
"znc.emacsconf.org" :port
6697
143 :password
(concat "bandali/freenode:" p
)))))
148 (let* ((auth (auth-source-search :host
"znca"))
150 (error "Couldn't find znca's authinfo")
151 (funcall (plist-get (car auth
) :secret
)))))
152 (erc-tls :server
"znc.emacsconf.org" :port
6697
153 :password
(concat "bandali/oftc:" p
)))))
158 (let* ((auth (auth-source-search :host
"znca"))
160 (error "Couldn't find znca's authinfo")
161 (funcall (plist-get (car auth
) :secret
)))))
162 (erc-tls :server
"znc.emacsconf.org" :port
6697
163 :password
(concat "bandali/tildechat:" p
)))))
165 (provide 'bandali-erc
)
166 ;;; bandali-erc.el ends here