Add setup for using org-noter
This commit is contained in:
parent
b03b96a157
commit
66f1c7ba05
17
README.org
17
README.org
|
@ -533,6 +533,23 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
||||||
"* TODO Read %:subject\nSCHEDULED:%t\nDEADLINE: %(org-insert-time-stamp (org-read-date nil t \"+2d\"))\n\n%a\n\n%i")
|
"* TODO Read %:subject\nSCHEDULED:%t\nDEADLINE: %(org-insert-time-stamp (org-read-date nil t \"+2d\"))\n\n%a\n\n%i")
|
||||||
))
|
))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** org-noter
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package org-noter
|
||||||
|
:ensure t
|
||||||
|
:diminish
|
||||||
|
:custom
|
||||||
|
(org-noter-always-create-frame nil)
|
||||||
|
(org-noter-kill-frame-at-session-end nil)
|
||||||
|
(org-noter-auto-save-last-location t)
|
||||||
|
(org-noter-default-notes-file-names '("notes.org"))
|
||||||
|
(org-noter-doc-property-in-notes t)
|
||||||
|
(org-noter-notes-search-path (list
|
||||||
|
(expand-file-name org-directory)
|
||||||
|
(expand-file-name "~/References/library/")
|
||||||
|
(expand-file-name "~/Documents/")))
|
||||||
|
(org-noter-prefer-root-as-file-level nil))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Citar
|
** Citar
|
||||||
#+begin_src emacs-lisp :results output silent
|
#+begin_src emacs-lisp :results output silent
|
||||||
|
|
Loading…
Reference in a new issue