mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-09 17:41:12 +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
|
;; 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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user