June 17th 2026 - Things I Worked On

Added formatting code in the whole buffer

Added a quick way to format all the code in a buffer.

(defun my/code-format-buffer ()
  "Format the code in the buffer."
  (interactive)
  (save-excursion
    (evil-indent (point-min) (point-max))))

(evil-leader/set-key
  "= =" 'my/code-format-buffer)

Created finance.el

I want a way to do my budgeting in Emacs so I created finance.el. For now it has the ability to create the initial ledger of accounts, add, edit, and delete accounts.