From a193fe28e6d99ebfeed3a391103007d346600df8 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 9 Oct 2024 14:41:52 -0400 Subject: [PATCH] fix: remove popup rules from load order block --- config.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config.org b/config.org index b52cd0d..5a2df05 100644 --- a/config.org +++ b/config.org @@ -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