Add eww config

Open links in eww by default, auto rename buffers to page titles
This commit is contained in:
Evie Litherland-Smith 2024-01-29 13:47:17 +00:00
parent 67938b7f63
commit 436ef3e605

View file

@ -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