Add tmr
This commit is contained in:
parent
f2ed02e593
commit
82c67a5f3b
1 changed files with 11 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue