kidd / org-gcal.el

Org sync with Google Calendar. (active maintained project as of 2019-11-06)
432 stars 47 forks source link

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

Open cafkafk opened 6 months ago

cafkafk commented 6 months ago

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!