From 82c67a5f3b7dd37a2d1b4f8c3c8e444821da1455 Mon Sep 17 00:00:00 2001 From: Jakub Date: Wed, 24 Sep 2025 02:17:58 +0800 Subject: [PATCH] Add tmr --- userland/scratch.el | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/userland/scratch.el b/userland/scratch.el index 9d549a7..fadb868 100644 --- a/userland/scratch.el +++ b/userland/scratch.el @@ -55,7 +55,9 @@ (defun open-org-scratch () (interactive) - (switch-to-buffer "*org scratch*")) + (switch-to-buffer "*org scratch*") + (org-mode) ;; n.b. this is to reload org-mode, in case any custom workflows haven't been applied. + ) (defun toggle-elisp-scratch () (interactive) @@ -83,6 +85,14 @@ (slot . 2) (window-width . 0.2))) +(use-package tmr) + +(add-to-list 'display-buffer-alist + '("\\\\*tmr-tabulated-view\\\\*" + (display-buffer-in-side-window) + (side . left) + (slot . 4))) + (provide 'scratch) ;;; scratch.el ends here