mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-30 12:06:13 +01:00
13 lines
357 B
Org Mode
13 lines
357 B
Org Mode
|
* Popwin
|
||
|
|
||
|
#+NAME: popwin
|
||
|
#+BEGIN_SRC emacs-lisp
|
||
|
(use-package popwin
|
||
|
:straight t
|
||
|
:config
|
||
|
(push '(rustic-compilation-mode :noselect t) popwin:special-display-config)
|
||
|
(push '(rustic-cargo-test-mode :noselect t) popwin:special-display-config)
|
||
|
(push '("*Warnings*" :noselect t) popwin:special-display-config)
|
||
|
(popwin-mode 1))
|
||
|
#+END_SRC
|