refactor: Move doom-popup into its own repo

This commit is contained in:
Madeleine Sydney
2025-01-31 14:20:07 -07:00
parent eabf7cef77
commit 73268a62a8
6 changed files with 7 additions and 1580 deletions

View File

@@ -1,24 +1,23 @@
;; syd-popups.el -*- lexical-binding: t; -*-
(use-package popper
:disabled
:init
(setq popper-display-control nil
popper-reference-buffers
(list (lambda (buf)
(with-current-buffer buf
(bound-and-true-p doom-popup-mode)))))
(bound-and-true-p doom-popup-buffer-mode)))))
:config
(popper-mode 1))
(use-package doom-popup
;; :after popper
:load-path "/persist/dots/users/crumb/programs/emacs/lib/doom-popup"
:straight nil
;; :straight
;; (:type nil
;; :local-repo "/persist/dots/users/crumb/programs/emacs/modules/doom-popup")
)
;; :load-path "/persist/dots/users/crumb/programs/emacs/lib/doom-popup"
;; :straight nil
:straight
(:type git
:host gitlab
:repo "crumbtoo/doom-popup"))
(provide 'syd-popups)
;;; syd-popups.el ends here