Move nov.el to Applications section

This commit is contained in:
contrapunctus 2022-01-14 01:35:59 +05:30
parent 053a818622
commit 18d307d0dd
1 changed files with 20 additions and 20 deletions

View File

@ -2037,11 +2037,30 @@ PR ideas
(:map pdf-history-minor-mode-map
("r" . nil)))
#+END_SRC
** nov.el
#+BEGIN_SRC emacs-lisp
(use-package nov
:mode ("\\.epub\\'" . nov-mode)
:hook (nov-mode . visual-line-mode)
:bind
(:map nov-mode-map
;; make (Boon) c and r work even when point is in a link
("c" . nil)
("r" . nil)
("y" . nov-copy-url)
("c" . nov-previous-document)
("r" . nov-next-document)
("h" . nov-history-back)
("s" . nov-history-forward)
("T" . nov-goto-toc)
("m" . my-dispatch-hydra)))
#+END_SRC
** proced
#+BEGIN_SRC emacs-lisp
(use-package proced
:config
(setq proced-auto-update-flag t))
(setq-default proced-auto-update-flag t))
#+END_SRC
** webpaste
#+BEGIN_SRC emacs-lisp
@ -4629,25 +4648,6 @@ Potentially useful - https://www.draketo.de/software/emacs-javascript.html
:hook (js2-mode-hook . skewer-mode))
#+END_SRC
* nov.el
#+BEGIN_SRC emacs-lisp
(use-package nov
:mode ("\\.epub\\'" . nov-mode)
:hook (nov-mode . visual-line-mode)
:bind
(:map nov-mode-map
;; make (Boon) c and r work even when point is in a link
("c" . nil)
("r" . nil)
("y" . nov-copy-url)
("c" . nov-previous-document)
("r" . nov-next-document)
("h" . nov-history-back)
("s" . nov-history-forward)
("T" . nov-goto-toc)
("m" . my-dispatch-hydra)))
#+END_SRC
* package
#+BEGIN_SRC emacs-lisp
(use-package package