diff options
author | 2019-09-11 23:44:46 -0400 | |
---|---|---|
committer | 2019-09-11 23:44:46 -0400 | |
commit | 62a2088e0654f9f2877f7d234227ceb2d3e66daf (patch) | |
tree | 5962385ae7995d4456d4a8fd22c749cda2555fd8 /.emacs.d/init.el | |
parent | a4eace5127b5a0f3a99b02b0514e6f50b647cc97 (diff) | |
download | configs-62a2088e0654f9f2877f7d234227ceb2d3e66daf.tar.gz configs-62a2088e0654f9f2877f7d234227ceb2d3e66daf.tar.xz configs-62a2088e0654f9f2877f7d234227ceb2d3e66daf.zip |
emacs: add org-pdftools
for linking to pdf files (and pages) in org
Diffstat (limited to '')
-rw-r--r-- | .emacs.d/init.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index a3d38ab..a535aaf 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1915,6 +1915,14 @@ This function is intended for use with `ivy-ignore-buffers'." :config (pdf-tools-install nil t) :custom (pdf-view-resize-factor 1.05)) +(use-package org-pdftools + :straight (:host github :repo "fuxialexander/org-pdftools") + :demand + :after org + :config + (with-eval-after-load 'org + (require 'org-pdftools))) + (use-package biblio) (use-feature reftex |