Doom-emacs: [REQUEST] add nov.el to apps

Created on 12 Nov 2019  路  2Comments  路  Source: hlissner/doom-emacs

Add nov.el as an app

nov.el is a major mode that implements an epub reader for Emacs.

https://github.com/wasamasa/nov.el

new modules backlog

Most helpful comment

I actually use nov.el, but there's not a lot of configuration needed for it apart from setting a path for it's cache.
I'm sure there's more that can be customized.

Here's my config apart from the (package! nov) declaration:

(use-package! nov
  :mode ("\\.epub\\'" . nov-mode)
  :config
  (setq nov-save-place-file (concat doom-cache-dir "nov-places")))

All 2 comments

I actually use nov.el, but there's not a lot of configuration needed for it apart from setting a path for it's cache.
I'm sure there's more that can be customized.

Here's my config apart from the (package! nov) declaration:

(use-package! nov
  :mode ("\\.epub\\'" . nov-mode)
  :config
  (setq nov-save-place-file (concat doom-cache-dir "nov-places")))

Thank you, very helpful. 馃憤

Was this page helpful?
0 / 5 - 0 ratings