dotfiles/emacs/.emacs.d/config/init-wallabag.el

18 lines
681 B
EmacsLisp
Raw Normal View History

2021-04-15 19:26:38 +00:00
;; -*- lexical-binding: t; -*-
(use-package wallabag
:straight (:host github :repo "chenyanming/wallabag.el" :files ("*.el" "emojis.alist"))
:commands (wallabag
wallabag-find
wallabag-full-update
wallabag-request-token
wallabag-add-entry
wallabag-insert-entry)
:config
(setq wallabag-host "https://wallabag.jeremydormitzer.com"
wallabag-username "jdormit"
wallabag-password (password-store-get "wallabag.jeremydormitzer.com")
wallabag-clientid (password-store-get "wallabag-client-id")
wallabag-secret (password-store-get "wallabag-client-secret")))
(provide 'init-wallabag)