mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-11 19:17:19 +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
|
||||
|
||||
@@ -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
|
||||
;; 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))))
|
||||
|
||||
@@ -788,6 +788,7 @@ Neotree is a file tree viewer. When you open neotree, it jumps to the current f
|
||||
* ORG MODE
|
||||
|
||||
** General Org Settings
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(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
|
||||
#+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
|
||||
|
||||
** TODO Capture
|
||||
** Capture
|
||||
#+begin_src emacs-lisp
|
||||
;; 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