emacs-config/unused/20-eaf.org

833 B

#+TITLE:Emacs Application Framework

Graphical Applications that integrates and extends emacs, so that I don't need to live in emacs

Load EAF

  (use-package eaf
:load-path "~/.local/eaf"
:custom
; See https://github.com/emacs-eaf/emacs-application-framework/wiki/Customization
(eaf-browser-continue-where-left-off nil)
(eaf-browser-enable-adblocker t)
(browse-url-browser-function 'eaf-open-browser)
(eaf-browser-download-path "~/dls")
(eaf-browser-default-search-engine "duckduckgo")
:config
(defalias 'browse-web #'eaf-open-browser))
  ;;	 (eaf-bind-key nil "M-q" eaf-browser-keybinding)) ;; unbind, see more in the Wiki

Load Applications

  (require 'eaf-browser)
  (require 'eaf-mindmap)
  (require 'eaf-terminal)