Copy window settings from my el-get config

This commit is contained in:
Vedang Manerikar 2024-11-23 09:41:27 +05:30
parent 7394e7395e
commit b080f8e5c2
2 changed files with 14 additions and 0 deletions

View file

@ -2960,6 +2960,14 @@ and the other more basic functions I have defined for this purpose.
(setq window-min-width 30))
#+end_src
#+begin_src emacs-lisp :tangle "unravel-modules/unravel-window.el"
(use-package window
:ensure nil
:config
(setq display-buffer-reuse-frames t)
(setq recenter-positions '(top middle bottom)))
#+end_src
** The =unravel-window.el= section about ~beframe~
:PROPERTIES:
:CUSTOM_ID: h:77e4f174-0c86-460d-8a54-47545f922ae9

View file

@ -96,6 +96,12 @@
(setq window-min-height 3)
(setq window-min-width 30))
(use-package window
:ensure nil
:config
(setq display-buffer-reuse-frames t)
(setq recenter-positions '(top middle bottom)))
;;; Frame-isolated buffers
;; Another package of mine. Read the manual:
;; <https://protesilaos.com/emacs/beframe>.