Testing out dynamic tiling
This commit is contained in:
parent
f2d9ce8671
commit
c0503de04c
19
config.org
19
config.org
|
|
@ -156,6 +156,25 @@ EXWM Specific Keybindings
|
||||||
(global-set-key (kbd "s-e") 'evil-quit-all)
|
(global-set-key (kbd "s-e") 'evil-quit-all)
|
||||||
(global-set-key (kbd "s-k") 'exwm-workspace-move)
|
(global-set-key (kbd "s-k") 'exwm-workspace-move)
|
||||||
(global-set-key (kbd "s-w") 'exwm-workspace-swap)
|
(global-set-key (kbd "s-w") 'exwm-workspace-swap)
|
||||||
|
** Dynamic Window Tiling
|
||||||
|
*** Edwina
|
||||||
|
Edwina is a dynamic window manager for Emacs.
|
||||||
|
It automatically arranges your Emacs panes (called “windows” in Emacs parlance) into predefined layouts, dwm-style.
|
||||||
|
+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package edwina
|
||||||
|
:ensure t
|
||||||
|
:config
|
||||||
|
(setq display-buffer-base-action '(display-buffer-below-selected))
|
||||||
|
(edwina-setup-dwm-keys)
|
||||||
|
(edwina-mode 1))
|
||||||
|
+END_SRC
|
||||||
|
*** Golden Ratio
|
||||||
|
+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package golden-ratio
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(golden-ratio-mode 1))
|
||||||
|
+END_SRC
|
||||||
** Custom
|
** Custom
|
||||||
*** Resizing Buffers
|
*** Resizing Buffers
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue