commit 4532a6314ad15632e79acff10d24c4a83b565aed parent 1b0b0eadf141103acc0eb6d7a7a4274d2f554b6b Author: Alex Balgavy <alex@balgavy.eu> Date: Fri, 14 Jan 2022 18:00:30 +0100 emacs: add avy Diffstat:
M | emacs/config.org | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -163,6 +163,16 @@ Solution: ~brew tap daviderestivo/emacs-head && brew install emacs-head@28 --wit (custom-set-faces '(ivy-posframe-border ((t (:inherit mode-line-inactive))))) (ivy-posframe-mode 1))) #+end_src +** avy +This lets me jump to any position in Emacs rather quickly, sometimes it's useful. +~avy-goto-char-timer~ lets me type a part of the text before avy kicks in. + +#+begin_src emacs-lisp + (use-package avy + :bind + (("C-:" . 'avy-goto-char-timer))) +#+end_src + ** org In org mode, I want to use bullets instead of stars, so I also install ~org-bullets~.