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


(provide 'bd--erc)