summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-02-18 22:30:53 -0600
committerCase Duckworth2021-02-18 22:30:53 -0600
commit4a74e4aafce3523949e13cb9fabe9a71b48fc8c6 (patch)
treef8dbaaf44df3a9ed0559c5c56c2e432b4a394c6a /config.org
parentDon't hide default modeline (diff)
downloademacs-4a74e4aafce3523949e13cb9fabe9a71b48fc8c6.tar.gz
emacs-4a74e4aafce3523949e13cb9fabe9a71b48fc8c6.zip
Change window layouts
Diffstat (limited to 'config.org')
-rw-r--r--config.org15
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
179Let'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