From 436ef3e605fb393205415b8be4233c3a22ccb6b3 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 29 Jan 2024 13:47:17 +0000 Subject: [PATCH] Add eww config Open links in eww by default, auto rename buffers to page titles --- README.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.org b/README.org index ed7bf90..8f4cc9f 100644 --- a/README.org +++ b/README.org @@ -193,6 +193,21 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia (use-package eshell :bind (("C-c t e" . eshell))) #+end_src + +** Web browser +#+begin_src emacs-lisp :tangle yes + (use-package eww + :defer t + :diminish + :custom + (browse-url-browser-function 'eww-browse-url) + (browse-url-new-window-flag t) + (eww-default-download-directory "~/Downloads/") + (eww-auto-rename-buffer 'title) + (eww-browse-url-new-window-is-tab nil)) + + +#+end_src * UI #+begin_src emacs-lisp (setq use-dialog-box nil