[Bugfix] Fix the way i set Paradox’ GitHub token
The line fetching it from password-store (which i no longer use) was still there, and there was an extra parentheses which yielded a syntax error.
This commit is contained in:
parent
e47a83c023
commit
3ed99004c3
@ -2504,12 +2504,10 @@ I don’t always use the package menu, but when i do, i want to do it in style
|
|||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package paradox
|
(use-package paradox
|
||||||
:config
|
|
||||||
(setq paradox-github-token (password-store-get "github.com/paradox"))
|
|
||||||
:custom
|
:custom
|
||||||
(paradox-lines-per-entry 2)
|
(paradox-lines-per-entry 2)
|
||||||
(paradox-automatically-star t)
|
(paradox-automatically-star t)
|
||||||
(paradox-github-token (nth 1 (auth-source-user-and-password "api.github.com" "gergelypolonkai^paradox"))))
|
(paradox-github-token (nth 1 (auth-source-user-and-password "api.github.com" "gergelypolonkai^paradox")))
|
||||||
:bind
|
:bind
|
||||||
(:map gpolonkai/pers-map
|
(:map gpolonkai/pers-map
|
||||||
("C-p" . paradox-list-packages)))
|
("C-p" . paradox-list-packages)))
|
||||||
|
Loading…
Reference in New Issue
Block a user