26 lines
489 B
Org Mode
26 lines
489 B
Org Mode
|
#+title: Password Store Config
|
||
|
#+author: Evie Litherland-Smith
|
||
|
#+email: evie@xenia.me.uk
|
||
|
#+filetags: :emacs:config:org:
|
||
|
* Password Store
|
||
|
#+begin_src emacs-lisp
|
||
|
(use-package password-store
|
||
|
:ensure t
|
||
|
:defer t
|
||
|
:diminish)
|
||
|
|
||
|
(use-package password-store-otp
|
||
|
:ensure t
|
||
|
:defer t
|
||
|
:diminish)
|
||
|
|
||
|
(use-package pass
|
||
|
:ensure t
|
||
|
:defer t
|
||
|
:diminish
|
||
|
:bind (("C-c P" . pass))
|
||
|
:custom
|
||
|
(pass-show-keybindings nil)
|
||
|
(pass-username-field "login"))
|
||
|
#+end_src
|