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

51 lines
1.2 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
(evil-leader/set-key
"Ap/" 'helm-pass)))
(defun pass/init-ivy-pass ()
(use-package ivy-pass
:defer t
:init
(evil-leader/set-key
"Ap/" 'ivy-pass)))
(defun pass/init-password-store ()
(use-package password-store
:defer t
:init
(progn
(spacemacs/declare-prefix "Ap" "pass")
(evil-leader/set-key
"Apy" 'password-store-copy
"Apg" 'password-store-generate
"Api" 'password-store-insert
"Apc" 'password-store-edit
"Apr" 'password-store-rename
"Apd" 'password-store-remove
"ApD" 'password-store-clear
"ApI" 'password-store-init
"Apw" 'password-store-url
"Ap?" 'spacemacs/pass-describe
"ApY" 'spacemacs/pass-copy-and-describe))))