Drop `csetq' macro and use good old `setq' and `setq-default'.
[~bandali/configs] / .emacs.d / lisp / bandali-erc.el
index 04d5fd3..1180e93 100644 (file)
@@ -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)
       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
    erc-save-queries-on-quit nil)
 
   ;; erc-match
-  (csetq
+  (setq
    erc-pal-highlight-type 'nick
    erc-pals
    '("bremner" "^gopar" "^iank" "quidam" "^rwp" "sudoman"
      :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
      :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")