2024-02-15 08:18:41 +00:00
|
|
|
#+title: Password Store Config
|
|
|
|
#+author: Evie Litherland-Smith
|
|
|
|
#+email: evie@xenia.me.uk
|
|
|
|
#+filetags: :emacs:config:org:
|
2024-02-15 08:45:37 +00:00
|
|
|
#+property: header-args:emacs-lisp :tangle yes :mkdirp yes :results output silent
|
2024-02-15 08:18:41 +00:00
|
|
|
* 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
|