summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormms <michal@sapka.me>2024-06-12 16:00:39 +0200
committermms <michal@sapka.me>2024-06-12 16:00:39 +0200
commit6062cd951bd2b66b463ca0e5a83b0e3dca777467 (patch)
treedf4d77a2895354e05a9240a9a8ccae7871fd1b74
parent7d645e3da4075c69dbd1b9df47e9cd857861041b (diff)
feat: Avy
-rw-r--r--init.el1
-rw-r--r--mms-gui.org2
-rw-r--r--mms-keyboard.org14
3 files changed, 14 insertions, 3 deletions
diff --git a/init.el b/init.el
index 1ee7424..b488774 100644
--- a/init.el
+++ b/init.el
@@ -24,6 +24,7 @@
;; If there is more than one, they won't work right.
'(auth-source-save-behavior nil)
'(mml-secure-openpgp-sign-with-sender t)
+ '(package-selected-packages '(eglot))
'(safe-local-variable-values
'((whitespace-line-column . 80)
(org-num-skip-tags "UNNUMBERED"))))
diff --git a/mms-gui.org b/mms-gui.org
index 09e0a1d..643ce9d 100644
--- a/mms-gui.org
+++ b/mms-gui.org
@@ -65,8 +65,6 @@ It is also available for FreeBSD and macOS:
(set-face-attribute 'default nil :font "iosevka" :height 200))
#+end_src
-#+RESULTS:
-: mms-presentation-font-mode
* Colors
diff --git a/mms-keyboard.org b/mms-keyboard.org
index 946e2f9..32c5715 100644
--- a/mms-keyboard.org
+++ b/mms-keyboard.org
@@ -136,7 +136,7 @@ I'll move them to dedicated sections when I reach them.
* Xah Lee Flykeys
-
+#
#+begin_src emacs-lisp
(use-package xah-fly-keys
:config
@@ -153,3 +153,15 @@ I'll move them to dedicated sections when I reach them.
#+end_src
+* Avy
+
+Avy is a quick jump-to-place package.
+I use it in a very basic way.
+
+#+begin_src emacs-lisp
+ (use-package avy
+ :after xah-fly-keys
+ :config
+ (define-key xah-fly-command-map (kbd "SPC -") 'avy-goto-char-timer)
+ )
+#+end_src