Set up wallabag.el

This commit is contained in:
coolneng 2022-08-13 14:47:42 +02:00
parent 10428092bd
commit 00ee2dbd6f
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 13 additions and 0 deletions

View File

@ -74,3 +74,15 @@
(after! lsp-clangd (set-lsp-priority! 'clangd 2))
;; Use relative line numbers (Usage: number <j/k>)
(setq display-line-numbers-type 'relative)
;; Use pass as auth-source
(add-to-list 'auth-sources 'password-store)
;; Set up wallabag
(after! wallabag
(setq wallabag-host "https://wallabag.coolneng.duckdns.org"
wallabag-username "coolneng"
wallabag-password (auth-source-pass-get 'secret "api/wallabag")
wallabag-clientid (auth-source-pass-get "clientid" "api/wallabag")
wallabag-secret (auth-source-pass-get "api-secret" "api/wallabag")
wallabag-show-sidebar 't
wallabag-show-entry-switch 'switch-to-buffer)
(add-hook 'wallabag-after-render-hook 'wallabag-search-update-and-clear-filter))

View File

@ -7,3 +7,4 @@
;; (package! builtin-package :disable t)
(package! org-super-agenda)
(package! org-chef)
(package! wallabag :recipe (:host github :repo "chenyanming/wallabag.el" :files ("*.el" "*.alist" "*.css")))