dotfiles/emacs/.emacs.d/config/init-wallabag.el
Jeremy Dormitzer b29c541f33 Add wallabag.el
2021-04-15 15:26:38 -04:00

18 lines
681 B
EmacsLisp

;; -*- 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)