From 20cd13c572c07d4e14738d5efe6044916f922b37 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 11 Jun 2017 18:00:45 +0200 Subject: [PATCH] tools/password-store: add helm-pass support --- modules/tools/password-store/config.el | 4 ++++ modules/tools/password-store/packages.el | 3 +++ 2 files changed, 7 insertions(+) diff --git a/modules/tools/password-store/config.el b/modules/tools/password-store/config.el index 4e593fa36..d3c6a357c 100644 --- a/modules/tools/password-store/config.el +++ b/modules/tools/password-store/config.el @@ -28,3 +28,7 @@ (require 'auth-store-pass) (auth-source-pass-enable))) + +(def-package! helm-pass + :when (featurep! :completion helm) + :commands helm-pass) diff --git a/modules/tools/password-store/packages.el b/modules/tools/password-store/packages.el index 14f6ca468..6defc2fb1 100644 --- a/modules/tools/password-store/packages.el +++ b/modules/tools/password-store/packages.el @@ -3,3 +3,6 @@ (package! password-store) (package! pass) + +(when (featurep! :completion helm) + (package! helm-pass))