You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configuration.org
+57-9Lines changed: 57 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,20 @@ Hardcode some settings that I wish to never change in any Emacs setup.
109
109
(setq-default line-spacing .15)
110
110
#+end_src
111
111
112
+
** display-buffer-alist
113
+
See [[https://old.reddit.com/r/emacs/comments/179t67l/window_management_share_your_displaybufferalist/][Window Management - share your display-buffer-alist : emacs]]
114
+
#+begin_src emacs-lisp
115
+
(add-to-list 'display-buffer-alist
116
+
'("\\*Man"
117
+
(display-buffer-same-window)))
118
+
(add-to-list 'display-buffer-alist
119
+
'("\\*Calendar*"
120
+
(display-buffer-at-bottom)))
121
+
(add-to-list 'display-buffer-alist
122
+
'("\\CAPTURE-.*\.org"
123
+
(display-buffer-same-window)))
124
+
#+end_src
125
+
112
126
* Set up load path
113
127
This way packages can be installed from submodules or tracked directly in my
0 commit comments