From 818f1395e36a756e794e4fbb32ea8641de72f0c5 Mon Sep 17 00:00:00 2001 From: Random936 Date: Thu, 11 Jan 2024 13:40:54 -0800 Subject: [PATCH] ERC quit now kills all channels; Added ledger mode --- .emacs.d/config.org | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index cb4f2c3..ff58ac1 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -480,7 +480,9 @@ ERC is a builtin package that adds IRC chatting functionality to emacs. erc-fill-column 120 erc-fill-function 'erc-fill-static erc-fill-static-center 20 - erc-kill-buffer-on-part t) + erc-kill-buffer-on-part t + erc-kill-queries-on-quit t + erc-kill-server-buffer-on-quit t) ;; Fix for perspective.el not adding ERC buffers to active perspective. (add-hook 'erc-join-hook (lambda (&rest args) @@ -505,6 +507,14 @@ To highlight each nickname with a different color, I can use the ~erc-hl-nicks~ (add-to-list 'erc-modules 'image)) #+end_src +* Ledger Mode + +Ledger is a Unix program that implements a finance tracking system or /ledger/. To implement this into emacs, you can install the ~ledger-mode~ emacs package. + +#+begin_src emacs-lisp +(use-package ledger-mode) +#+end_src + * Import Other Files This is the section to include imports from other files.