Copy window settings from my el-get config
This commit is contained in:
parent
7394e7395e
commit
b080f8e5c2
2 changed files with 14 additions and 0 deletions
|
@ -2960,6 +2960,14 @@ and the other more basic functions I have defined for this purpose.
|
||||||
(setq window-min-width 30))
|
(setq window-min-width 30))
|
||||||
#+end_src
|
#+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~
|
** The =unravel-window.el= section about ~beframe~
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:CUSTOM_ID: h:77e4f174-0c86-460d-8a54-47545f922ae9
|
:CUSTOM_ID: h:77e4f174-0c86-460d-8a54-47545f922ae9
|
||||||
|
|
|
@ -96,6 +96,12 @@
|
||||||
(setq window-min-height 3)
|
(setq window-min-height 3)
|
||||||
(setq window-min-width 30))
|
(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
|
;;; Frame-isolated buffers
|
||||||
;; Another package of mine. Read the manual:
|
;; Another package of mine. Read the manual:
|
||||||
;; <https://protesilaos.com/emacs/beframe>.
|
;; <https://protesilaos.com/emacs/beframe>.
|
||||||
|
|
Loading…
Reference in a new issue