aboutsummaryrefslogtreecommitdiff
path: root/dot_emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2026-08-04 10:41:44 -0400
committerRyan Kavanagh <rak@rak.ac>2026-08-04 10:41:44 -0400
commit82ed4bee9ba6cb25228370e3ddb641f252db11cf (patch)
treeaabf420ac9b0a2a6275843ed3317aff0e2fb2915 /dot_emacs
parentset cape prefix to M-+ (diff)
add ignores to erc
Diffstat (limited to '')
-rw-r--r--dot_emacs8
1 files changed, 7 insertions, 1 deletions
diff --git a/dot_emacs b/dot_emacs
index a5a0c0d..2e9b23f 100644
--- a/dot_emacs
+++ b/dot_emacs
@@ -373,7 +373,13 @@ Extended Format date in the date field and return it as a string obeing
(use-package erc
:straight t
:custom
- (erc-hide-list '("JOIN" "PART" "QUIT" "353"))
+ (erc-hide-list '("JOIN" "PART" "QUIT"
+ ;; https://www.rfc-editor.org/rfc/rfc2812.txt
+ "305" ; ":You are no longer marked as being away"
+ "306" ; ":You have been marked as being away"
+ "332" ; RPL_TOPIC "<channel> :<topic>"
+ "353" ; RPL_NAMEREPLY
+ ))
(erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
(erc-fill-column 120)
(erc-fill-function 'erc-fill-static)