diff options
-rw-r--r-- | .emacs.d/init.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 1432dda..c723488 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1588,8 +1588,11 @@ This function is intended for use with `ivy-ignore-buffers'." (use-package pdf-tools :defer 0.5 :bind (:map pdf-view-mode-map - ("M-RET" . image-previous-line)) - :config (pdf-tools-install nil t)) + ("<XF86Back>" . pdf-history-backward) + ("<XF86Forward>" . pdf-history-forward) + ("M-RET" . image-previous-line)) + :config (pdf-tools-install nil t) + :custom (pdf-view-resize-factor 1.05)) (use-package biblio) |