Add some avy keymaps
This commit is contained in:
parent
288947cd6e
commit
dd7e871a4b
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue