fix: remove popup rules from load order block

This commit is contained in:
Kiana Sheibani 2024-10-09 14:41:52 -04:00
parent 30a4e0d322
commit a193fe28e6
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -2097,8 +2097,7 @@ Having an IDE-style tooltip pop up is nice, but ~flymake-popon~ is a bit ugly by
*** Popups
#+begin_src emacs-lisp
(after! flymake
(set-popup-rule! "^\\*Flymake" :vslot 1 :side 'bottom))
(set-popup-rule! "^\\*Flymake" :vslot 1 :side 'bottom)
#+end_src
** Git
@ -2717,9 +2716,10 @@ I use the standard Unix-style password management system, [[https://www.password
(after! pass
(setq pass-show-keybindings nil ; Keybindings take up too much space
pass-suppress-confirmations t ; Quit shouldn't need a confirm step
)
;; Move to right side
(set-popup-rule! "^\\*Password-Store" :side 'right :size 0.25 :quit nil))
))
;; Move to right side
(set-popup-rule! "^\\*Password-Store" :side 'right :size 0.25 :quit nil)
#+end_src
*** Tweaks