changed pdf resize factor

This commit is contained in:
ndwarshuis 2019-04-08 14:12:50 -04:00
parent 08006a97a8
commit a95e517b7e
1 changed files with 2 additions and 0 deletions

View File

@ -2536,11 +2536,13 @@ Filtering is useful for obvious reasons
#+END_SRC #+END_SRC
** pdf-tools ** pdf-tools
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
;; TODO consider tagging this with :pin manual to upgrade seperately
(use-package pdf-tools (use-package pdf-tools
:ensure t :ensure t
:config :config
(pdf-tools-install t) (pdf-tools-install t)
(setq pdf-view-display-size 'fit-page (setq pdf-view-display-size 'fit-page
pdf-view-resize-factor 1.1
pdf-annot-activate-created-annotations t) pdf-annot-activate-created-annotations t)
(add-hook 'pdf-annot-list-mode-hook #'pdf-annot-list-follow-minor-mode)) (add-hook 'pdf-annot-list-mode-hook #'pdf-annot-list-follow-minor-mode))
#+END_SRC #+END_SRC