You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.2 KiB
1.2 KiB
Passwords
Password management inside of Emacs.
Setup
Install pass
on the system.
RUN apt install pass
Config
Encrypted passwords are stored inside files, in a file structure providing easy commands for generating, modifying, and copying passwords. password-store.el
provides a wrapper for the functionality within Emacs.
(use-package password-store :custom (password-store-dir dotfiles/passwords))
Shortcuts
Configure keybindings behind SPC p
:
-
Copy with
p
-
Rename with
r
-
Generate with
g
(dotfiles/leader "p" '(:ignore t :which-key "Passwords") "pp" '(password-store-copy :which-key "Copy") "pr" '(password-store-rename :which-key "Rename") "pg" '(password-store-generate :which-key "Generate"))