diff options
author | Case Duckworth | 2020-12-03 23:42:38 -0600 |
---|---|---|
committer | Case Duckworth | 2020-12-03 23:42:38 -0600 |
commit | 042d6e7bea52b676a2385e2e4cd114d3089139f4 (patch) | |
tree | 80b4b012586ee0d8c0e422e1cae05bd71ee4bd75 | |
parent | Add kill-emacs hook to compact db (diff) | |
download | emacs-042d6e7bea52b676a2385e2e4cd114d3089139f4.tar.gz emacs-042d6e7bea52b676a2385e2e4cd114d3089139f4.zip |
Config eww
-rw-r--r-- | config.org | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config.org b/config.org index 53ecfb7..b4f814f 100644 --- a/config.org +++ b/config.org | |||
@@ -1737,6 +1737,22 @@ This way, I can configure my feeds in an [[file:elfeed.org][org file]]! | |||
1737 | (elfeed-org)) | 1737 | (elfeed-org)) |
1738 | #+end_src | 1738 | #+end_src |
1739 | 1739 | ||
1740 | ** Emacs Web WOWser | ||
1741 | |||
1742 | I can /not/ get over how hilarious this name is 😜 | ||
1743 | |||
1744 | #+begin_src emacs-lisp | ||
1745 | (use-package eww | ||
1746 | :custom | ||
1747 | (shr-animate-image nil) | ||
1748 | :bind (:map eww-mode-map | ||
1749 | ("b" . #'eww-back-url) | ||
1750 | ("f" . #'eww-forward-url)) | ||
1751 | :config | ||
1752 | (require 'url-cookie) | ||
1753 | (cuss url-cookie-confirmation t)) | ||
1754 | #+end_src | ||
1755 | |||
1740 | * Appendix A: Scripts | 1756 | * Appendix A: Scripts |
1741 | 1757 | ||
1742 | ** ~emacsdc~ | 1758 | ** ~emacsdc~ |