Skip to content

Commit

Permalink
feat(keybindings): explicitly add avy
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 12, 2023
1 parent 2a7b4b5 commit 005f1eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions core/me-completion.el
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,7 @@ This depends on `+cape-hosts' and `+cape-global-capes'."
(use-package consult
:straight t
:hook (embark-collect-mode . consult-preview-at-point-mode)
:bind (("C-s" . consult-line)
:map minibuffer-local-map
:bind (:map minibuffer-local-map
("C-r" . consult-history)
("C-S-v" . consult-yank-pop)
:package isearch
Expand Down
6 changes: 6 additions & 0 deletions core/me-keybindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,12 @@
(+map-local! :keymaps 'flymake-mode-map
"ff" #'+flymake-main/body)))

(use-package avy
:straight t
:bind (("C-\"" . avy-goto-char)
("C-é" . avy-goto-line) ; French AZERTY
("M-g l" . avy-goto-line)))


(provide 'me-keybindings)

Expand Down

0 comments on commit 005f1eb

Please sign in to comment.