spacemacs/layers/+tools/pass/packages.el

47 lines
1.3 KiB
EmacsLisp
Raw Normal View History

;;; packages.el --- Passwords Layer packages File for Spacemacs
;;
2018-01-04 07:00:25 +00:00
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Andrew Oppenlander <andrew.oppenlander@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
2018-03-27 01:55:51 +00:00
(setq pass-packages
'(
2018-09-08 14:34:46 +00:00
(ivy-pass :requires ivy)
2018-03-27 01:55:51 +00:00
(helm-pass :requires helm)
password-store
))
(defun pass/init-helm-pass ()
2018-09-08 14:34:46 +00:00
(use-package helm-pass
:defer t
:init (spacemacs/set-leader-keys "atP/" 'helm-pass)))
2018-09-08 14:34:46 +00:00
(defun pass/init-ivy-pass ()
(use-package ivy-pass
:defer t
:init (spacemacs/set-leader-keys "atP/" 'ivy-pass)))
(defun pass/init-password-store ()
(use-package password-store
:defer t
:init
(progn
(spacemacs/declare-prefix "atP" "pass")
(spacemacs/set-leader-keys
"atPy" 'password-store-copy
"atPg" 'password-store-generate
"atPi" 'password-store-insert
"atPc" 'password-store-edit
"atPr" 'password-store-rename
"atPd" 'password-store-remove
"atPD" 'password-store-clear
"atPI" 'password-store-init
"atPw" 'password-store-url
"atP?" 'spacemacs/pass-describe
"atPY" 'spacemacs/pass-copy-and-describe))))