My goal is to use org-pdftools
as described in this blogpost. I started by trying to make pdf-tools
work with continuous scrolling, but I'm running into various problems. It is getting way complicated and would appreciate some help. For context, I'm on Mac and put most of my config in config.org
file and load it from init.el
.
- When I put
(pdf-tools-install)
inconfig.org
, Emacs uses DocView when I open a pdf file. I need to runM-x pdf-tools-install
everytime I open Emacs. When I put(pdf-tools-install)
ininit.el
, this problem is gone. Why is this happening? - To enable continuous scroll with
pdf-tools
, I'd like to use pdf-continuous-scroll-mode.el or image-roll.el. I've not been able to get them to work. This SE post has a suggestion on how to enable this fix. It didn't work for me. What is the correct way to do this? Are there better ways to enable continuous-scroll with pdf-tools? - While working on above, I came to know about quelpa and tried installing it following the official instructions as
M-x package-install RET quelpa RET
but Emacs can't find this package. I've added the third method from the instructions toinit.el
but I have no idea if it is working (no errors at startup though). I get an error if I add this line(require 'quelpa-use-package)
, the error is:
Warning (initialization): An error occurred while loading ‘.emacs.d/init.el’:
File is missing: Cannot open load file, No such file or directory, quelpa-use-package
I don't get what's going on. What is the correct way to use quelpa, install the continuous-scroll feature, and start using pdf-tools?