Commit | Line | Data |
---|---|---|
4c05c418 AB |
1 | ;;; bandali-erc.el --- bandali's ERC setup -*- lexical-binding: t; -*- |
2 | ||
3 | ;; Copyright (C) 2018-2020 Amin Bandali | |
4 | ||
5 | ;; Author: Amin Bandali <bandali@gnu.org> | |
6 | ;; Keywords: tools | |
7 | ||
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. | |
12 | ||
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. | |
17 | ||
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/>. | |
20 | ||
21 | ;;; Commentary: | |
22 | ||
23 | ;; My ERC setup for IRC. It uses my fork of ZNC.el. | |
24 | ||
25 | ;;; Code: | |
26 | ||
8c4704d0 AB |
27 | (defvar b/erc-detach-on-kill t |
28 | "Whether killing a channel should send a DETACH command (for ZNC).") | |
29 | ||
c84be134 | 30 | (with-eval-after-load 'erc |
0596e3cf | 31 | (make-directory (b/var "erc/dcc/") t) |
c84be134 AB |
32 | (csetq |
33 | erc-auto-query 'bury | |
34 | erc-autojoin-domain-only nil | |
0596e3cf | 35 | erc-dcc-get-default-directory (b/var "erc/dcc/") |
c84be134 AB |
36 | erc-format-nick-function 'erc-format-@nick |
37 | erc-join-buffer 'bury | |
0596e3cf | 38 | erc-log-channels-directory (b/var "erc/log-channels/") |
c84be134 AB |
39 | erc-lurker-hide-list '("JOIN" "PART" "QUIT") |
40 | erc-nick "bandali" | |
41 | erc-prompt "erc>" | |
8c4704d0 | 42 | erc-prompt-for-password nil |
c84be134 AB |
43 | erc-rename-buffers t |
44 | erc-server-reconnect-attempts 5 | |
45 | erc-server-reconnect-timeout 3) | |
46 | ||
5361eed6 AB |
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") | |
39c1c073 AB |
51 | (defun erc-cmd-OPME () |
52 | "Request chanserv to op me." | |
53 | (erc-message "PRIVMSG" | |
54 | (format "chanserv op %s %s" | |
55 | (erc-default-target) | |
0ef64d0d AB |
56 | (erc-current-nick)) |
57 | nil)) | |
5361eed6 | 58 | (declare-function erc-cmd-DEOP "erc" (&rest people)) |
39c1c073 AB |
59 | (defun erc-cmd-DEOPME () |
60 | "Deop myself from current channel." | |
61 | (erc-cmd-DEOP (format "%s" (erc-current-nick)))) | |
62 | (add-to-list 'erc-modules 'keep-place) | |
adba94a7 AB |
63 | (when (display-graphic-p) |
64 | (add-to-list 'erc-modules 'notifications)) | |
39c1c073 AB |
65 | (add-to-list 'erc-modules 'smiley) |
66 | (add-to-list 'erc-modules 'spelling) | |
5361eed6 | 67 | (declare-function erc-update-modules "erc") |
c84be134 AB |
68 | (erc-update-modules) |
69 | ||
86dd267a AB |
70 | (set-face-attribute |
71 | 'erc-nick-default-face nil | |
927b50b7 AB |
72 | ;; :weight 'semibold |
73 | ;; :background "#f2f2f2" | |
74 | ;; :foreground "#222222" | |
75 | :weight 'bold | |
76 | :background "#f8f8f8" | |
77 | :foreground "#6a6a6a") | |
78 | ||
79 | ;; (set-face-attribute | |
80 | ;; 'erc-notice-face nil | |
81 | ;; ;; :background "#fffadf" | |
82 | ;; ;; :background "#f9f9f9" | |
83 | ;; :background 'unspecified | |
84 | ;; ;; :foreground "#809de5" | |
85 | ;; :foreground "steel blue") | |
86dd267a | 86 | |
c84be134 | 87 | ;; erc-fill |
8c4704d0 AB |
88 | ;; (csetq |
89 | ;; erc-fill-column 77 | |
90 | ;; erc-fill-function 'erc-fill-variable | |
91 | ;; erc-fill-static-center 18) | |
92 | ;; to disable: | |
93 | ;; (erc-fill-mode -1) | |
c84be134 AB |
94 | |
95 | ;; erc-match | |
8c4704d0 AB |
96 | (csetq |
97 | erc-pal-highlight-type 'nick | |
927b50b7 | 98 | erc-pals |
adba94a7 AB |
99 | '("aindilis" "blackbeard" "bremner" "~brettgilio?@*" "civodul" |
100 | "dto" "ggoes" "iank" "jrasata" "mplsCorwin" "quidam" "rwp" | |
101 | "sachac" "sudoman" "technomancy")) | |
8c4704d0 AB |
102 | (with-eval-after-load 'erc-match |
103 | (set-face-attribute | |
104 | 'erc-pal-face nil | |
105 | :foreground 'unspecified | |
106 | :weight 'unspecified | |
86dd267a AB |
107 | :inherit 'erc-nick-default-face |
108 | :background (face-attribute 'font-lock-string-face :background))) | |
c84be134 AB |
109 | |
110 | ;; erc-pcomplete | |
adba94a7 | 111 | (csetq erc-pcomplete-nick-postfix ",") |
c84be134 | 112 | |
8c4704d0 AB |
113 | ;; erc-stamp |
114 | (csetq erc-timestamp-only-if-changed-flag nil | |
115 | erc-timestamp-format "%T " | |
116 | erc-insert-timestamp-function 'erc-insert-timestamp-left) | |
117 | (with-eval-after-load 'erc-match | |
118 | (set-face-attribute | |
119 | 'erc-timestamp-face nil | |
120 | :foreground "#aaaaaa" | |
121 | :weight 'unspecified | |
122 | :background 'unspecified)) | |
123 | ||
c84be134 AB |
124 | ;; erc-track |
125 | (csetq | |
126 | erc-track-enable-keybindings nil | |
127 | erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT" | |
128 | "324" "329" "332" "333" "353" "477") | |
129 | erc-track-position-in-mode-line t | |
130 | erc-track-priority-faces-only 'all | |
131 | erc-track-shorten-function nil | |
132 | erc-track-showcount t) | |
133 | ||
134 | ;; key bindings | |
135 | (global-set-key (kbd "C-c w e") #'erc-switch-to-buffer-other-window) | |
8c4704d0 AB |
136 | (define-key erc-mode-map (kbd "M-a") #'erc-track-switch-buffer) |
137 | ||
138 | ;; hooks | |
139 | (defun b/erc-detach-or-kill-channel () | |
140 | (if b/erc-detach-on-kill | |
141 | (when (erc-server-process-alive) | |
142 | (let ((tgt (erc-default-target))) | |
143 | (erc-server-send (format "DETACH %s" tgt) nil tgt))) | |
144 | (erc-kill-channel))) | |
145 | (add-hook 'erc-kill-channel-hook #'b/erc-detach-or-kill-channel) | |
146 | (remove-hook 'erc-kill-channel-hook #'erc-kill-channel)) | |
147 | ||
c84be134 | 148 | ;; global key bindings |
8c4704d0 AB |
149 | (global-set-key |
150 | (kbd "C-c a e f") | |
151 | (lambda () | |
152 | (interactive) | |
153 | (let* ((auth (auth-source-search :host "znca")) | |
154 | (p (if (null auth) | |
155 | (error "Couldn't find znca's authinfo") | |
156 | (funcall (plist-get (car auth) :secret))))) | |
157 | (erc-tls :server "znc.emacsconf.org" :port 6697 | |
158 | :password (concat "bandali/freenode:" p))))) | |
159 | (global-set-key | |
160 | (kbd "C-c a e o") | |
161 | (lambda () | |
162 | (interactive) | |
163 | (let* ((auth (auth-source-search :host "znca")) | |
164 | (p (if (null auth) | |
165 | (error "Couldn't find znca's authinfo") | |
166 | (funcall (plist-get (car auth) :secret))))) | |
167 | (erc-tls :server "znc.emacsconf.org" :port 6697 | |
168 | :password (concat "bandali/oftc:" p))))) | |
169 | (global-set-key | |
170 | (kbd "C-c a e t") | |
171 | (lambda () | |
172 | (interactive) | |
173 | (let* ((auth (auth-source-search :host "znca")) | |
174 | (p (if (null auth) | |
175 | (error "Couldn't find znca's authinfo") | |
176 | (funcall (plist-get (car auth) :secret))))) | |
177 | (erc-tls :server "znc.emacsconf.org" :port 6697 | |
178 | :password (concat "bandali/tildechat:" p))))) | |
39c1c073 AB |
179 | |
180 | (provide 'bandali-erc) | |
4c05c418 | 181 | ;;; bandali-erc.el ends here |