From 37235893634360ed052e16390e2bb29a2d44dc00 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 11 Feb 2020 16:04:44 -0500 Subject: [PATCH] Set up org-noter --- emacs/init.org | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index a9bc295..2a556d7 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -1931,6 +1931,23 @@ Quickly find stuff in Org files: (leader-def-key "or" helm-org-rifle-commands-map)) #+END_SRC +* Org Noter +[[https://github.com/weirdNox/org-noter][Org Noter]] lets me take org-mode notes on PDFs, epubs, and DocView files: +#+BEGIN_SRC emacs-lisp + (use-package org-noter + :commands org-noter + :general + ((normal visual motion) org-noter-doc-mode-map "i" #'org-noter-insert-note) + ((normal visual motion) org-noter-doc-mode-map "q" #'org-noter-kill-session) + ((normal visual motion) org-noter-doc-mode-map "C-M-n" #'org-noter-sync-next-note) + ((normal visual motion) org-noter-doc-mode-map "C-M-p" #'org-noter-sync-prev-note) + ((normal visual motion) org-noter-doc-mode-map "M-." #'org-noter-sync-current-page-or-chapter) + ((normal visual motion) org-noter-doc-mode-map "M-i" #'org-noter-insert-precise-note) + ((normal visual motion) org-noter-doc-mode-map "M-n" #'org-noter-sync-next-page-or-chapter) + ((normal visual motion) org-noter-doc-mode-map "M-p" #'org-noter-sync-prev-page-or-chapter) + ((normal visual motion) org-noter-doc-mode-map "C-M-." #'org-noter-sync-current-note)) +#+END_SRC + * Projectile #+BEGIN_SRC emacs-lisp (use-package projectile