From 884a22a2d1e36261454b45430a7d7d0f9e09c52d Mon Sep 17 00:00:00 2001 From: Random936 Date: Wed, 20 Dec 2023 19:48:48 -0800 Subject: [PATCH] Fixed ERC config issue not loading erc-image --- .emacs.d/config.org | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index a71e83f..c165a74 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -481,18 +481,19 @@ ERC is a builtin package that adds IRC chatting functionality to emacs. erc-kill-buffer-on-part t) #+end_src -To highlight each nickname with a different color, I can use the ~erc-hl-nicks~ package. +To highlight each nickname with a different color, I can use the ~erc-hl-nicks~ package. I can also use the ~erc-image~ package to render images sent by other users over IRC. #+begin_src emacs-lisp (use-package erc-hl-nicks - :after erc) -#+end_src + :after erc + :config (add-to-list 'erc-modules 'hl-nicks)) -I can also use the ~erc-image~ package to render images sent by other users over IRC. - -#+begin_src emacs-lisp (use-package erc-image - :after erc) + :after erc + :config + (setq erc-image-inline-rescale 300) + (add-to-list 'erc-modules 'image)) + #+end_src * Import Other Files