diff options
-rw-r--r-- | config.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.org b/config.org index 15f4f1e..5c1b300 100644 --- a/config.org +++ b/config.org | |||
@@ -174,6 +174,21 @@ This is extremely fiddly and I'd love another option. | |||
174 | split-height-threshold 50) | 174 | split-height-threshold 50) |
175 | #+end_src | 175 | #+end_src |
176 | 176 | ||
177 | *** Window layouts | ||
178 | |||
179 | Let's try settings from [[https://github.com/nex3/perspective-el#some-musings-on-emacs-window-layouts][nex3]] on Github. | ||
180 | |||
181 | #+begin_src emacs-lisp :noweb-ref settings | ||
182 | (setq-default | ||
183 | ;; `display-buffer-alist' is the big alist of things | ||
184 | display-buffer-alist | ||
185 | '((".*" (display-buffer-reuse-window display-buffer-same-window))) | ||
186 | ;; reuse windows in other frames | ||
187 | display-buffer-reuse-frames t | ||
188 | ;; avoid resizing | ||
189 | even-window-sizes nil) | ||
190 | #+end_src | ||
191 | |||
177 | *** Switch to other window or buffer :crux: | 192 | *** Switch to other window or buffer :crux: |
178 | 193 | ||
179 | #+begin_src emacs-lisp :noweb-ref bindings | 194 | #+begin_src emacs-lisp :noweb-ref bindings |