33 lines
833 B
Org Mode
33 lines
833 B
Org Mode
#+TITLE:Emacs Application Framework
|
|
|
|
Graphical Applications that integrates and extends emacs, so that I don't need to live in emacs
|
|
|
|
* Load EAF
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
(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
|
|
|
|
#+end_src
|
|
|
|
* Load Applications
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
(require 'eaf-browser)
|
|
(require 'eaf-mindmap)
|
|
(require 'eaf-terminal)
|
|
|
|
#+end_src
|