From 87bdc8d91f47f07d458470ff2cf50eca1ae3831c Mon Sep 17 00:00:00 2001 From: Random936 Date: Tue, 3 Feb 2026 20:44:03 -0500 Subject: [PATCH] Added ement.el to emacs config --- .emacs.d/config.org | 4 +++- .emacs.d/erc.org | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index ff087a6..5ee69bc 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -67,7 +67,7 @@ Add a nice visualization for tabs and spaces. This can be helpful to identify wh #+begin_src elisp (global-whitespace-mode) -(setq whitespace-global-modes '(not org-mode dired-mode erc-mode)) +(setq whitespace-global-modes '(not org-mode dired-mode erc-mode ement-room-mode)) (setq whitespace-style '(face tabs spaces tab-mark space-mark trailing)) (custom-set-faces '(whitespace-tab ((t (:foreground "#384551")))) @@ -87,6 +87,7 @@ This adds relative line numbers while excluding certain modes. ; Disable line numbers for certain modes (dolist (mode '(org-mode-hook erc-mode-hook + ement-room-mode-hook mu4e-main-mode-hook term-mode-hook vterm-mode-hook @@ -375,6 +376,7 @@ Load other files: (jm/load-config-if-exists "~/.emacs.d/dired.org") ; Dired Config (jm/load-config-if-exists "~/.emacs.d/lsp.org") ; Language Server Protocol (jm/load-config-if-exists "~/.emacs.d/erc.org") ; IRC Client Config +(jm/load-config-if-exists "~/.emacs.d/matrix.org") ; Matrix Client Config (jm/load-config-if-exists "~/.emacs.d/email.org") ; Mu4e Config (jm/load-config-if-exists "~/.emacs.d/ledger.org") ; Ledger CLI Config #+end_src diff --git a/.emacs.d/erc.org b/.emacs.d/erc.org index b42f70a..a9dbcec 100644 --- a/.emacs.d/erc.org +++ b/.emacs.d/erc.org @@ -4,8 +4,8 @@ ERC is a built-in package that adds IRC chatting functionality to emacs. #+begin_src elisp (jm/leader-keys - "cc" '(erc :which-key "Connect to ZNC Bouncer") - "cb" '(erc-switch-to-buffer :which-key "Switch IRC buffers")) + "cic" '(erc :which-key "Connect to ZNC Bouncer") + "cib" '(erc-switch-to-buffer :which-key "Switch IRC buffers")) (use-package erc :ensure nil