Add some avy keymaps

This commit is contained in:
Evie Litherland-Smith 2023-11-12 19:40:21 +00:00
parent 288947cd6e
commit dd7e871a4b
2 changed files with 15 additions and 0 deletions

View file

@ -81,6 +81,12 @@
("C-c l C-o" . link-hint-open-all-link) ("C-c l C-o" . link-hint-open-all-link)
("C-c l C-c" . link-hint-copy-all-link))) ("C-c l C-c" . link-hint-copy-all-link)))
(use-package avy
:ensure t
:bind (("C-c j w" . avy-goto-word-0)
("C-c j c" . avy-goto-char)
("C-c j l" . avy-goto-line)))
(setq use-dialog-box nil (setq use-dialog-box nil
fill-column 80 fill-column 80
truncate-lines nil truncate-lines nil

View file

@ -101,6 +101,15 @@
("C-c l C-o" . link-hint-open-all-link) ("C-c l C-o" . link-hint-open-all-link)
("C-c l C-c" . link-hint-copy-all-link))) ("C-c l C-c" . link-hint-copy-all-link)))
#+end_src #+end_src
** Avy keymaps
#+begin_src emacs-lisp
(use-package avy
:ensure t
:bind (("C-c j w" . avy-goto-word-0)
("C-c j c" . avy-goto-char)
("C-c j l" . avy-goto-line)))
#+end_src
* UI * UI
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq use-dialog-box nil (setq use-dialog-box nil