Add EAFramework. Might work sometimes.

This commit is contained in:
MitchMarq42 2023-05-30 09:26:56 -08:00
parent 479fc1436d
commit 4e368ef22a

View File

@ -1138,5 +1138,26 @@ Taken from https://howardism.org/Technical/Emacs/eshell-why.html"
(use-package cube
:elpaca (:repo "https://codeberg.org/akib/emacs-cube"))
;; Emacs App Framework. Definitely pretty broken but it worked once
(use-package eaf
:elpaca (:host github :repo "emacs-eaf/emacs-application-framework"
;; :files ("*")
;; :post-build (progn
;; (require 'eaf)
;; (eaf-install-and-update))
:files ("*.el" "*.py" "core" "app" "*.json")
:pre-build (("python" "install-eaf.py"
"--install" "pdf-viewer" "browser"
"--ignore-sys-deps"))
)
:config (add-to-list 'load-path (expand-file-name "app/" eaf-source-dir))
)
(use-package eaf-browser
:elpaca nil
:after eaf
:custom
(eaf-browser-continue-where-left-off t)
(eaf-browser-enable-adblocker t))
(provide 'mitch-packages)
;;; mitch-packages.el ends here