diff options
Diffstat (limited to 'emacs.org')
-rwxr-xr-x | emacs.org | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -202,6 +202,11 @@ Fonts and basic appearance settings for each device (global-set-key (kbd "C-x r C-r") 'bookmark-rename) #+end_src * Pass +** Setup +Generate a random password between 20 and 40 characters +#+begin_src emacs-lisp + (setq password-store-password-length (+ 20 (random 20))) +#+end_src ** Pass Launcher #+begin_src emacs-lisp (require 'password-store) |