From 5c1155ba6d83cc4c06c296f9266d9cd3b24e1716 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Tue, 23 Jul 2024 16:35:30 +1200 Subject: [PATCH] emacs: add catchup --- .emacs.d/init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 374a292..40d0d9d 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -351,6 +351,12 @@ value `italic'." (load mu4e-file))) ;; other packages +(require 'catchup) +(setq catchup-separator "\t" + catchup-spec '((format-time-string "date %Y/%m/%d %T") + (catchup-battery "batt %s%%"))) +(global-set-key (kbd "C-c u") 'catchup) + (require 'esv) (add-to-list 'esv-arguments "-f") (setq esv-close-existing-buffers t)