blob: 8d9e45e9ae05a1d50d9b4725abd00b411ce97215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
;; -*- lexical-binding: t; -*-
(with-eval-after-load "erc" (defalias 'erc 'erc-tls))
(setopt erc-lurker-threshold-time 3600
erc-hide-list '("JOIN" "PART" "QUIT")
erc-server "operationnull.com"
erc-nick "Isaz"
erc-prompt-for-password t
erc-kill-buffer-on-part t
erc-autojoin-channels-alist '(("libera.chat"
"#emacs"
"##furry"
"#guile"
"#guix"
"#parabola"
"#systemcrafters"))
erc-fill-function 'erc-fill-static
erc-fill-column 80
erc-fill-static-center 15)
(provide 'bd--erc)
;;; bd-erc ends here
|