Set up wallabag.el
This commit is contained in:
parent
10428092bd
commit
00ee2dbd6f
12
config.el
12
config.el
|
@ -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))
|
||||
|
|
|
@ -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")))
|
||||
|
|
Loading…
Reference in New Issue