1
0
Fork 0

Display org-roam buffer to the right

This commit is contained in:
Daniele Tricoli 2023-03-21 00:09:48 +01:00
parent aac6615b8a
commit 7b9a7b452d

View file

@ -153,6 +153,15 @@
(require 'org-roam-protocol)
(require 'org-roam-dailies)
; Set org-roam buffer display to the right.
(add-to-list 'display-buffer-alist
'("\\*org-roam\\*"
(display-buffer-in-direction)
(direction . right)
(window-width . 0.33)
(window-parameters . ((no-other-window . t)
(no-delete-other-windows . t)))))
(defun org-agenda-has-todos-files ()
"Return a list of note files containing 'has_todos' tag."
(seq-uniq
@ -171,7 +180,6 @@
(advice-add 'org-agenda :before #'org-agenda-files-update)
(require 'org-indent)
) ; End of use-package org-roam block