I showed you my source code, pls respond
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.3 KiB

Pass

Password management inside of Emacs.

Setup

Install pass1 on the system before loading the module.

RUN apt install -y pass

Config

Encrypted passwords are stored inside files, in a file structure providing easy commands for generating, modifying, and copying passwords. password-store.el2 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"))

Footnotes