From 26a7641a6aa9522cf23191bacea09c81ca2caa33 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 18 Nov 2016 15:20:40 +0100 Subject: [PATCH] Fix github-notifier config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If it doesn’t load *after* id-manager, it can’t get the token. --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index 5c94838..773db83 100644 --- a/init.el +++ b/init.el @@ -950,6 +950,8 @@ (use-package github-notifier :ensure t + :after + id-manager :config (setq github-notifier-token (gpolonkai/idm-get-password-for-account "GitHub")) (github-notifier-mode))