From 0603a1d27a22aa13adc59f1e04bb79de441e0da1 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sat, 2 Aug 2025 15:27:24 -0700 Subject: [PATCH] Updated erc config to better wrap text --- .emacs.d/erc.org | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.emacs.d/erc.org b/.emacs.d/erc.org index d12b7ba..c0ace08 100644 --- a/.emacs.d/erc.org +++ b/.emacs.d/erc.org @@ -3,8 +3,6 @@ ERC is a built-in package that adds IRC chatting functionality to emacs. #+begin_src elisp - -;; Shotcuts for general (jm/leader-keys "cc" '(erc-tls :which-key "Connect to IRC over TLS") "cb" '(erc-switch-to-buffer :which-key "Switch IRC buffers")) @@ -18,14 +16,14 @@ ERC is a built-in package that adds IRC chatting functionality to emacs. "353" "324" "329" "332" "333" "353" "477")) (erc-autojoin-channels-alist '((".*\.libera\.chat" "#emacs" "#nixos" "#systemcrafters"))) (erc-fill-column 120) - (erc-fill-function 'erc-fill-static) + (erc-fill-function 'erc-fill-wrap) (erc-fill-static-center 20) (erc-kill-buffer-on-part t) (erc-kill-queries-on-quit t) (erc-kill-server-buffer-on-quit t) :config - (add-to-list 'erc-modules 'notifications)) - + (add-to-list 'erc-modules 'notifications) + (add-to-list 'erc-modules 'scrolltobottom) #+end_src * ERC Extensions