diff options
author | fpi | 2021-01-21 15:56:40 +0100 |
---|---|---|
committer | fpi | 2022-03-17 14:37:56 +0100 |
commit | a8e61222ba0aa56839bcad50a00910872986cdbd (patch) | |
tree | 0d2d1b015f66ace0b1ea245538b5e18bec449f93 | |
parent | Fix conflict in C-c n t binding (diff) |
Add spray for speed reading
-rw-r--r-- | emacs-init.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org index 6d5d674..e4e08c4 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -47,6 +47,7 @@ - [[#footnote-mode][Footnote Mode]] - [[#bbdb][BBDB]] - [[#compile][Compile]] + - [[#speed-reading][Speed reading]] - [[#context-aware-hydra][Context aware hydra]] - [[#minor-utilities][Minor utilities]] - [[#language-settings][Language settings]] @@ -5382,6 +5383,12 @@ Fix ansi colors in compile buffers. From [[https://endlessparentheses.com/ansi-c compilation-filter-start (point)))) :hook (compilation-filter . endless/colorize-compilation)) #+END_src +** Speed reading +=spray= offers an interface similar to the [[https://ds300.github.io/jetzt/][jetzt]] browser based speed reader. +#+begin_src emacs-lisp +(use-package spray + :straight (:host nil :repo "https://git.sr.ht/~iank/spray/")) +#+end_src ** Context aware hydra :PROPERTIES: :ID: 22750e48-aaee-4f60-bdce-1d511ebe3375 |