diff options
author | Case Duckworth | 2021-02-18 22:30:53 -0600 |
---|---|---|
committer | Case Duckworth | 2021-02-18 22:30:53 -0600 |
commit | 4a74e4aafce3523949e13cb9fabe9a71b48fc8c6 (patch) | |
tree | f8dbaaf44df3a9ed0559c5c56c2e432b4a394c6a | |
parent | Don't hide default modeline (diff) | |
download | emacs-4a74e4aafce3523949e13cb9fabe9a71b48fc8c6.tar.gz emacs-4a74e4aafce3523949e13cb9fabe9a71b48fc8c6.zip |
Change window layouts
-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 |