Skip to content

Commit

Permalink
Add mode for password-store.
Browse files Browse the repository at this point in the history
FossilOrigin-Name: 9bdef46bfde494ae110a86394239df2046146bb2
  • Loading branch information
jaccarmac committed May 1, 2015
1 parent bf853ed commit ae4c881
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dot-emacs-dot-d.org
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,19 @@ Now, for some code.
'("ledger/.*\\.dat\\'" . ledger-mode)))
#+END_SRC

* Generate and secure passwords.

I use =password-store= to manage and generate all my passwords. This utility
stores passwords in text files encrypted by my GPG key, and can copy them to
the system clipboard when I need to use them. A work-in-progress Emacs mode
is included in the distribution and cloned and installed in the following
snippet.

#+NAME: password-store
#+BEGIN_SRC emacs-lisp
(quse-package password-store)
#+END_SRC

* Manage projects.

One-off-file hacking is great, but most of what I do is done in the context
Expand Down Expand Up @@ -411,6 +424,8 @@ Now, for some code.

<<ledger-mode>>

<<password-store>>

<<projectile>>

<<magit>>
Expand Down
2 changes: 2 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
:init (add-to-list 'auto-mode-alist
'("ledger/.*\\.dat\\'" . ledger-mode)))

(quse-package password-store)

(quse-package projectile
:init (projectile-global-mode))

Expand Down

0 comments on commit ae4c881

Please sign in to comment.