ERC quit now kills all channels; Added ledger mode

This commit is contained in:
Random936 2024-01-11 13:40:54 -08:00
parent c5a1b0da25
commit 818f1395e3

View File

@ -480,7 +480,9 @@ ERC is a builtin package that adds IRC chatting functionality to emacs.
erc-fill-column 120 erc-fill-column 120
erc-fill-function 'erc-fill-static erc-fill-function 'erc-fill-static
erc-fill-static-center 20 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. ;; Fix for perspective.el not adding ERC buffers to active perspective.
(add-hook 'erc-join-hook (lambda (&rest args) (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)) (add-to-list 'erc-modules 'image))
#+end_src #+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 * Import Other Files
This is the section to include imports from other files. This is the section to include imports from other files.