summaryrefslogtreecommitdiffstats
path: root/.emacs.d/lisp/bandali-erc.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/bandali-erc.el')
-rw-r--r--.emacs.d/lisp/bandali-erc.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/.emacs.d/lisp/bandali-erc.el b/.emacs.d/lisp/bandali-erc.el
index 04d5fd3..1180e93 100644
--- a/.emacs.d/lisp/bandali-erc.el
+++ b/.emacs.d/lisp/bandali-erc.el
@@ -1,6 +1,6 @@
;;; bandali-erc.el --- bandali's ERC setup -*- lexical-binding: t; -*-
-;; Copyright (C) 2018-2021 Amin Bandali
+;; Copyright (C) 2018-2022 Amin Bandali
;; Author: Amin Bandali <bandali@gnu.org>
;; Keywords: IRC, chat, client, Internet
@@ -26,7 +26,7 @@
(with-eval-after-load 'erc
(make-directory (b/var "erc/dcc") t)
- (csetq
+ (setq
erc-auto-query 'bury
erc-autojoin-domain-only nil
erc-dcc-get-default-directory (b/var "erc/dcc")
@@ -84,7 +84,7 @@
;; :foreground "steel blue")
;; erc-fill
- ;; (csetq
+ ;; (setq
;; erc-fill-column 77
;; erc-fill-function 'erc-fill-variable
;; erc-fill-static-center 18)
@@ -106,7 +106,7 @@
directory))
(defun b/erc-log-file-name (&rest _)
(concat (format-time-string "%Y-%m-%d") ".log"))
- (csetq
+ (setq
;; erc-enable-logging 'erc-log-all-but-server-buffers
erc-generate-log-file-name-function #'b/erc-log-file-name
erc-log-channels-directory #'b/erc-log-directory
@@ -117,7 +117,7 @@
erc-save-queries-on-quit nil)
;; erc-match
- (csetq
+ (setq
erc-pal-highlight-type 'nick
erc-pals
'("bremner" "^gopar" "^iank" "quidam" "^rwp" "sudoman"
@@ -132,12 +132,12 @@
:background "#ffffdf"))
;; erc-pcomplete
- (csetq erc-pcomplete-nick-postfix ",")
+ (setq erc-pcomplete-nick-postfix ",")
;; erc-stamp
- (csetq erc-timestamp-only-if-changed-flag nil
- erc-timestamp-format "%T "
- erc-insert-timestamp-function 'erc-insert-timestamp-left)
+ (setq erc-timestamp-only-if-changed-flag nil
+ erc-timestamp-format "%T "
+ erc-insert-timestamp-function 'erc-insert-timestamp-left)
(with-eval-after-load 'erc-match
(set-face-attribute
'erc-timestamp-face nil
@@ -146,7 +146,7 @@
:background 'unspecified))
;; erc-track
- (csetq
+ (setq
erc-track-enable-keybindings nil
erc-track-exclude-types '("JOIN" "MODE" "NICK" "PART" "QUIT"
"324" "329" "332" "333" "353" "477")