Merge branch 'master' of gitlab.com:chriscochrun/dotemacs
This commit is contained in:
commit
2a3f17c90e
2 changed files with 59 additions and 0 deletions
20
init.el
20
init.el
|
@ -208,6 +208,7 @@
|
|||
"o" '(:ignore t :which-key "open")
|
||||
"h" '(:ignore t :which-key "help")
|
||||
"n" '(:ignore t :which-key "notes")
|
||||
"sp" '(:ignore t :which-key "passwords")
|
||||
"bs" '(consult-buffer :which-key "buffer search")
|
||||
"bd" '(kill-this-buffer :which-key "kill buffer")
|
||||
"bi" '(ibuffer :which-key "ibuffer")
|
||||
|
@ -1383,6 +1384,25 @@ interfere with the default `bongo-playlist-buffer'."
|
|||
:keymaps 'override
|
||||
"ot" 'transmission))
|
||||
|
||||
(use-package auth-source-pass
|
||||
:defer 1
|
||||
:config (auth-source-pass-enable))
|
||||
|
||||
(use-package pass
|
||||
:defer 1)
|
||||
|
||||
(use-package password-store
|
||||
:after pass
|
||||
:general
|
||||
(chris/leader-keys
|
||||
"sp" 'password-store-copy))
|
||||
|
||||
(use-package password-store-otp
|
||||
:after password-store
|
||||
:general
|
||||
(chris/leader-keys
|
||||
"st" 'password-store-otp-token-copy))
|
||||
|
||||
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
|
||||
;; in non-focused windows.
|
||||
(setq-default cursor-in-non-selected-windows nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue