diff options
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/keybindings.el | 7 | ||||
-rw-r--r-- | users/wpcarro/emacs/default.nix | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el index c34088286f4e..c8be25aa0cd8 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el @@ -49,6 +49,7 @@ (require 'evil-surround) (require 'key-chord) (require 'edebug) +(require 'avy) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; General Keybindings @@ -409,5 +410,11 @@ "K" #'refine-delete "q" #'kill-this-buffer) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; avy +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(global-set-key (kbd "C-;") #'avy-goto-char) + (provide 'keybindings) ;;; keybindings.el ends here diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix index a010784f8dbd..0c62c4602cd9 100644 --- a/users/wpcarro/emacs/default.nix +++ b/users/wpcarro/emacs/default.nix @@ -33,6 +33,7 @@ let ]) ++ (with epkgs.melpaPackages; [ + avy org-bullets sly notmuch |