mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
Split off popper to Org Roam
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
7a3e84c1c4
commit
6b64821b38
23
emacs-lisp/popper.org
Normal file
23
emacs-lisp/popper.org
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
:PROPERTIES:
|
||||||
|
:ID: 45da0115-42c7-4a9a-9288-c5d840a69b92
|
||||||
|
:END:
|
||||||
|
#+title: Popper
|
||||||
|
#+filetags: emacs-load
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
#+NAME: popper
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package popper
|
||||||
|
:straight (popper :type git :host github :repo "karthink/popper")
|
||||||
|
:init
|
||||||
|
(setq popper-reference-buffers
|
||||||
|
'("\\*Messages\\*"
|
||||||
|
"\\*Warnings\\*"
|
||||||
|
"Output\\*$"
|
||||||
|
help-mode
|
||||||
|
compilation-mode
|
||||||
|
rustic-compilation-mode
|
||||||
|
tex-shell))
|
||||||
|
(popper-mode +1))
|
||||||
|
#+END_SRC
|
|
@ -718,24 +718,6 @@ Enable ~magit-todos~ and hook them on ~lsp-mode~ and also ~org-mode~, because it
|
||||||
|
|
||||||
* Popper
|
* 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.
|
|
||||||
|
|
||||||
#+NAME: popper
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package popper
|
|
||||||
:straight (popper :type git :host github :repo "karthink/popper")
|
|
||||||
:init
|
|
||||||
(setq popper-reference-buffers
|
|
||||||
'("\\*Messages\\*"
|
|
||||||
"\\*Warnings\\*"
|
|
||||||
"Output\\*$"
|
|
||||||
help-mode
|
|
||||||
compilation-mode
|
|
||||||
rustic-compilation-mode))
|
|
||||||
(popper-mode +1))
|
|
||||||
#+END_SRC
|
|
||||||
* Projectile
|
* Projectile
|
||||||
|
|
||||||
Enable ~projectile~.
|
Enable ~projectile~.
|
||||||
|
|
Loading…
Reference in a new issue