Compare commits
2 Commits
423e200458
...
2f27c73b2f
| Author | SHA1 | Date | |
|---|---|---|---|
| 2f27c73b2f | |||
| 348cc168cc |
@@ -26,14 +26,13 @@
|
|||||||
|
|
||||||
;; !in a org document run org-ref to test the installation
|
;; !in a org document run org-ref to test the installation
|
||||||
(use-package org-ref ;; used with some preamble defs and \printbibliography (biblatex/biber, no html export), see also ox-bibtex
|
(use-package org-ref ;; used with some preamble defs and \printbibliography (biblatex/biber, no html export), see also ox-bibtex
|
||||||
:after (org)
|
:defer t
|
||||||
:defer 1
|
|
||||||
:init
|
:init
|
||||||
;; specify completion backends
|
;; specify completion backends
|
||||||
(defvar org-ref-completion-library 'org-ref-ivy-cite) ;; requires ivy-bibtex, must be set before requiring org-ref otherwise helm will be loaded
|
(defvar org-ref-completion-library 'org-ref-ivy-cite) ;; requires ivy-bibtex, must be set before requiring org-ref otherwise helm will be loaded
|
||||||
:config
|
:config
|
||||||
;; TODO: version 3 not working (with article-latex), the tex file still has the from cite:&... -> \cite{&...}
|
;; TODO: version 3 not working (with article-latex), the tex file still has the from cite:&... -> \cite{&...}
|
||||||
(setq org-ref-cite-insert-version 2) ;; org-ref-citation-links.el
|
;; (setq org-ref-cite-insert-version 2) ;; org-ref-citation-links.el
|
||||||
(setq bibtex-dialect 'biblatex) ;; biblatex also for biber
|
(setq bibtex-dialect 'biblatex) ;; biblatex also for biber
|
||||||
(setq org-latex-prefer-user-labels t)) ;; reference to headings ref:section-name
|
(setq org-latex-prefer-user-labels t)) ;; reference to headings ref:section-name
|
||||||
|
|
||||||
|
|||||||
@@ -328,7 +328,8 @@ Example defines
|
|||||||
|
|
||||||
;; Make invisible parts of Org elements appear visible.
|
;; Make invisible parts of Org elements appear visible.
|
||||||
(use-package org-appear
|
(use-package org-appear
|
||||||
:hook (org-mode . org-appear-mode)
|
:commands (org-appear-mode)
|
||||||
|
;; :hook (org-mode . org-appear-mode)
|
||||||
:config
|
:config
|
||||||
(setq org-appear-autoentities t) ;; toogle entities: \alpha -> ɑ, needs `org-pretty-entities' active
|
(setq org-appear-autoentities t) ;; toogle entities: \alpha -> ɑ, needs `org-pretty-entities' active
|
||||||
(setq org-appear-autoemphasis t) ;; toggle emphasis markers, t by default, needs `org-hide-emphasis-markers' active
|
(setq org-appear-autoemphasis t) ;; toggle emphasis markers, t by default, needs `org-hide-emphasis-markers' active
|
||||||
@@ -336,7 +337,7 @@ Example defines
|
|||||||
(setq org-appear-autosubmarkers t) ;; toogle subscripts and superscripts: ^3 -> ³, needs `org-pretty-entities' active
|
(setq org-appear-autosubmarkers t) ;; toogle subscripts and superscripts: ^3 -> ³, needs `org-pretty-entities' active
|
||||||
(setq org-appear-autokeywords t) ;; toogle keywords: #+TITLE: foo -> foo, needs `org-hidden-keywords' active
|
(setq org-appear-autokeywords t) ;; toogle keywords: #+TITLE: foo -> foo, needs `org-hidden-keywords' active
|
||||||
(setq org-appear-delay 0.5) ;; with delay a mouse click open a link directly and holding down shows the description
|
(setq org-appear-delay 0.5) ;; with delay a mouse click open a link directly and holding down shows the description
|
||||||
(setq org-appear-trigger 'always))
|
(setq org-appear-trigger 'manual)) ;; 'always toggled every time with cursor
|
||||||
|
|
||||||
(use-package org-brain ;; uses org-id If you find that org-brain is missing entries, or list entries which doesn’t exist, try using M-x org-brain-update-id-locations, which syncs the org-brain entries with the org-id caching system.
|
(use-package org-brain ;; uses org-id If you find that org-brain is missing entries, or list entries which doesn’t exist, try using M-x org-brain-update-id-locations, which syncs the org-brain entries with the org-id caching system.
|
||||||
:commands (org-brain-visualize)
|
:commands (org-brain-visualize)
|
||||||
@@ -1006,6 +1007,7 @@ except:
|
|||||||
|
|
||||||
(use-package ol
|
(use-package ol
|
||||||
:config
|
:config
|
||||||
|
(setq org-link-descriptive nil) ;; toggle with: `org-toggle-link-display`
|
||||||
(setq org-link-frame-setup
|
(setq org-link-frame-setup
|
||||||
'((vm . vm-visit-folder-other-frame)
|
'((vm . vm-visit-folder-other-frame)
|
||||||
(vm-imap . vm-visit-imap-folder-other-frame)
|
(vm-imap . vm-visit-imap-folder-other-frame)
|
||||||
|
|||||||
Reference in New Issue
Block a user