From 46f0491ab65d2a8eadafb9ef85046d84c9d37b52 Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Fri, 27 Oct 2023 21:27:07 -0400 Subject: Add stuff for reading documents --- init.el | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'init.el') diff --git a/init.el b/init.el index 911e3bb..e50a90c 100644 --- a/init.el +++ b/init.el @@ -843,6 +843,37 @@ :hook (pdf-view-mode . pdf-view-themed-minor-mode)) +;; --------------------------------- +;; EPUB +;; ---- +;; E-book file format +;; --------------------------------- + +(use-package nov + :straight t + :config + (add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode)) + (setq nov-save-place-file "~/kb/bookmarksEPUB")) + + +;; --------------------------------- +;; Muse +;; --------------------------------- + +(use-package muse + :straight t + :config + (add-to-list 'auto-mode-alist '("\\.muse\\'" . muse-mode))) + + +;; --------------------------------- +;; Bookmarks +;; --------- +;; I almost never remember where I +;; left off reading. +;; --------------------------------- + +(setq bookmark-file "~/kb/bookmarks") -- cgit v1.2.3