dotfiles/emacs-lisp/popper.org
Magic_RB e891fd2406
Emacs things
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-01-10 01:21:14 +01:00

787 B

Popper

Enable popper, a better version of popwin, which might actually work. It groups popups by context and allows you to specify their exact positioning, or even a custom display function. It also seems to be better at restoring the previous layout.

  (use-package popper
    :straight (popper :type git :host github :repo "karthink/popper")
    :init
    (setq popper-reference-buffers
          '("\\*Messages\\*"
            "\\*Warnings\\*"
            "Output\\*$"
            "\\*HS-Error\\*"
            help-mode
            compilation-mode
            rustic-compilation-mode
            tex-shell))
    (popper-mode +1))