Fixing bug where *buffers* wouldn't open in a split like they should.

This commit is contained in:
Derek Taylor
2026-03-15 11:57:26 -05:00
parent 34b8fbeb8b
commit 8a44d4c102
2 changed files with 14 additions and 8 deletions
+6 -3
View File
@@ -54,7 +54,7 @@
;; IMPORTANT: This allows us to use our custom Emacs launchers
;; without getting the annoying second window created.
(setq display-buffer-alist
'(("^\\(\\*.*\\*\\|Dashboard\\)$"
'(("^Dashboard$" ;; Only target the Dashboard buffer specifically
(display-buffer-no-window)
(allow-no-window . t))))
@@ -572,10 +572,13 @@
(setq org-directory "~/nc/Org/")
(setq org-agenda-files (list (concat org-directory "agenda.org")))
;; List files that org-agenda will use.
(setq org-agenda-files
(list (concat org-directory "tasks.org")
(concat org-directory "journal.org")))
;; Defines the global fallback destination for all your Org notes.
(setq org-default-notes-file (concat org-directory "/notes.org"))
(setq org-default-notes-file (concat org-directory "notes.org"))
;; (Optional) Create custom templates
(setq org-capture-templates