kidd/org-gcal.el

README didn't work for me `add-to-list 'plstore-ecrypt-to`

cafkafk opened this issue · 0 comments

When following the readme, I wanted to use my own GPG key.

(require 'plstore)
(add-to-list 'plstore-encrypt-to '("GPG-key-id"))

However, this didn't work for me. Instead, I had to do:

(require 'plstore)
(add-to-list 'plstore-encrypt-to "GPG-key-id")

Now I'm able to sync successfully :)

Thanks for making this cool emacs package!