From 3ed99004c390f94444e2a9d68ab119b27e0139d2 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 23 Nov 2021 12:27:38 +0100 Subject: [PATCH] =?UTF-8?q?[Bugfix]=20Fix=20the=20way=20i=20set=20Paradox?= =?UTF-8?q?=E2=80=99=20GitHub=20token?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- configuration.org | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configuration.org b/configuration.org index ab62384..6c76c35 100644 --- a/configuration.org +++ b/configuration.org @@ -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 (use-package paradox - :config - (setq paradox-github-token (password-store-get "github.com/paradox")) :custom (paradox-lines-per-entry 2) (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 (:map gpolonkai/pers-map ("C-p" . paradox-list-packages)))