Add eww config
Open links in eww by default, auto rename buffers to page titles
This commit is contained in:
parent
67938b7f63
commit
436ef3e605
15
README.org
15
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
|
||||
|
|
Loading…
Reference in a new issue