This commit is contained in:
Jakub 2025-09-24 02:17:58 +08:00
parent f2ed02e593
commit 82c67a5f3b

View file

@ -55,7 +55,9 @@
(defun open-org-scratch () (defun open-org-scratch ()
(interactive) (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 () (defun toggle-elisp-scratch ()
(interactive) (interactive)
@ -83,6 +85,14 @@
(slot . 2) (slot . 2)
(window-width . 0.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) (provide 'scratch)
;;; scratch.el ends here ;;; scratch.el ends here