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 ;; IMPORTANT: This allows us to use our custom Emacs launchers
;; without getting the annoying second window created. ;; without getting the annoying second window created.
(setq display-buffer-alist (setq display-buffer-alist
'(("^\\(\\*.*\\*\\|Dashboard\\)$" '(("^Dashboard$" ;; Only target the Dashboard buffer specifically
(display-buffer-no-window) (display-buffer-no-window)
(allow-no-window . t)))) (allow-no-window . t))))
@@ -572,10 +572,13 @@
(setq org-directory "~/nc/Org/") (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. ;; 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 ;; (Optional) Create custom templates
(setq org-capture-templates (setq org-capture-templates
+8 -5
View File
@@ -147,7 +147,7 @@ Emacs Dashboard is an extensible startup screen showing you recent files, bookma
;; IMPORTANT: This allows us to use our custom Emacs launchers ;; IMPORTANT: This allows us to use our custom Emacs launchers
;; without getting the annoying second window created. ;; without getting the annoying second window created.
(setq display-buffer-alist (setq display-buffer-alist
'(("^\\(\\*.*\\*\\|Dashboard\\)$" '(("^Dashboard$" ;; Only target the Dashboard buffer specifically
(display-buffer-no-window) (display-buffer-no-window)
(allow-no-window . t)))) (allow-no-window . t))))
@@ -788,6 +788,7 @@ Neotree is a file tree viewer. When you open neotree, it jumps to the current f
* ORG MODE * ORG MODE
** General Org Settings ** General Org Settings
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq org-directory "~/nc/Org/") (setq org-directory "~/nc/Org/")
@@ -795,14 +796,16 @@ Neotree is a file tree viewer. When you open neotree, it jumps to the current f
** Agenda ** Agenda
#+begin_src emacs-lisp #+begin_src emacs-lisp
(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")))
#+end_src #+end_src
** TODO Capture ** Capture
#+begin_src emacs-lisp #+begin_src emacs-lisp
;; Defines the global fallback destination for all your Org notes. ;; 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 ;; (Optional) Create custom templates
(setq org-capture-templates (setq org-capture-templates