summary refs log tree commit diff stats
path: root/tag-emacs
diff options
context:
space:
mode:
authorAlan Pearce2016-01-04 15:58:42 +0100
committerAlan Pearce2016-01-04 15:58:42 +0100
commit069922e569c9f3729b2a6f48d414608e98e3344b (patch)
treeb3d6181c7f04033cb9783186eb5f5a879bf6d5eb /tag-emacs
parent47434ec5414615851d09019b4d94abd536765026 (diff)
downloaddotfiles-069922e569c9f3729b2a6f48d414608e98e3344b.tar.lz
dotfiles-069922e569c9f3729b2a6f48d414608e98e3344b.tar.zst
dotfiles-069922e569c9f3729b2a6f48d414608e98e3344b.zip
Emacs: Configure avy keys for colemak
Diffstat (limited to 'tag-emacs')
-rw-r--r--tag-emacs/emacs.d/init.org17
1 files changed, 9 insertions, 8 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index c65d5eb..02be584 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -2306,14 +2306,15 @@ Avy is a really nice way to move around files, like ace-jump-mode, but
 somehow I prefer it.
 
 #+BEGIN_SRC emacs-lisp
-(use-package avy
-  :bind* (("M-g g" . avy-goto-line)
-          ("M-g M-g" . avy-goto-line)
-          ("C-|" . avy-goto-line)
-          ("C-c SPC" . avy-goto-char-timer))
-  :config (progn
-            (avy-setup-default)
-            (setq avy-all-windows nil)))
+  (use-package avy
+    :bind* (("M-g g" . avy-goto-line)
+            ("M-g M-g" . avy-goto-line)
+            ("C-|" . avy-goto-line)
+            ("C-c SPC" . avy-goto-char-timer))
+    :config (progn
+              (avy-setup-default)
+              (setq avy-all-windows nil
+                    avy-keys '(?a ?r ?s ?t ?d ?h ?n ?e ?i ?\;))))
 #+END_SRC
 
 ** goto-chg