clean up
This commit is contained in:
@@ -16,27 +16,26 @@
|
||||
|
||||
;;; Code:
|
||||
(use-package pdf-tools
|
||||
:load-path (lambda() (concat user-emacs-directory "lisp/pdf-tools"))
|
||||
:defer t ;; used by org-ref
|
||||
)
|
||||
:load-path "lisp/pdf-tools"
|
||||
:defer t) ;; used by org-ref
|
||||
|
||||
(use-package biblio
|
||||
:load-path (lambda() (concat user-emacs-directory "lisp/biblio"))
|
||||
:defer t ;; used by org-ref
|
||||
)
|
||||
:load-path "lisp/biblio"
|
||||
:defer t) ;; used by org-ref
|
||||
|
||||
(use-package org-ref ;; used with some preamble defs and \printbibliography (biblatex/biber, no html export), see also ox-bibtex
|
||||
:load-path (lambda() (concat user-emacs-directory "lisp/org-ref"))
|
||||
:load-path "lisp/org-ref"
|
||||
:after (org)
|
||||
:defer 1
|
||||
:init
|
||||
;; 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
|
||||
:config
|
||||
(setq bibtex-dialect 'biblatex) ;; biblatex also for biber
|
||||
)
|
||||
(setq bibtex-dialect 'biblatex)) ;; biblatex also for biber
|
||||
|
||||
(use-package ox-bibtex ;; used with #+BIBLIOGRAPHY: ... (bibtex, with html export), see also org-ref
|
||||
:after (org)
|
||||
:defer 1
|
||||
)
|
||||
:defer 1)
|
||||
|
||||
(provide 'bibliography-settings)
|
||||
;;; bibliography-settings.el ends here
|
||||
|
||||
Reference in New Issue
Block a user