spacemacs/layers/+tools/pass/packages.el
syl20bnr 29c78ce841 Defer packages by default using use-package-always-defer
Warning now `:defer t` is implied, to force a package to load `:demand t` is
now necessary.
2018-02-27 23:32:52 -05:00

31 lines
913 B
EmacsLisp

;;; packages.el --- Passwords Layer packages File for Spacemacs
;;
;; 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
(setq pass-packages '(password-store))
(defun pass/init-password-store ()
(use-package password-store
: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))))