mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-11 10:31:13 +10:00
Fixing bug where *buffers* wouldn't open in a split like they should.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user