diff options
author | William Carroll <wpcarro@gmail.com> | 2020-09-07T15·11+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-09-07T15·14+0100 |
commit | 3dc10f167bc61ba58fefa141078dc4693101bf9b (patch) | |
tree | 192ee5182dcf7f2b7d2d5eecd046bd91552f305e /emacs/.emacs.d | |
parent | a366f352e6f6f4db3dd1602679f8887f47401256 (diff) |
Install keybindings for bookmark.el
I would like to restore these KBDs.
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/wpc/keybindings.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el index 3917cc7c5fda..722042445f2b 100644 --- a/emacs/.emacs.d/wpc/keybindings.el +++ b/emacs/.emacs.d/wpc/keybindings.el @@ -35,6 +35,7 @@ (require 'display) (require 'device) (require 'fonts) +(require 'bookmark) ;; Note: The following lines must be sorted this way. (setq evil-want-integration t) @@ -51,6 +52,9 @@ ;; General Keybindings ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Install KBDs like <SPC>jb to search through my monorepo. +(bookmark-install-kbds) + ;; Ensure that evil's command mode behaves with readline bindings. (general-define-key :keymaps 'evil-ex-completion-map |