summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--erc.el
blob: 8a5165f955e46a26cc10c9b08dff3611ba04d39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;; -*- 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"))
        erc-fill-function 'erc-fill-static
        erc-fill-column 80
        erc-fill-static-center 15)


(provide 'bd--erc)