about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-10-06 16:30:41 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-10-06 16:30:41 +0100
commit674f848325a793ab3c7d97792f6bc4f1878d6263 (patch)
treef45ac28422600b00364a9a7d19991c0793024774
parentf61fb0fe50dc0eb087a3086ea4c9d1365daaec5e (diff)
downloaddotfiles-674f848325a793ab3c7d97792f6bc4f1878d6263.tar.gz
Enable repeat-mode quietly
-rw-r--r--.emacs.d/lisp/init-ui.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el
index d26d20a..0690bd0 100644
--- a/.emacs.d/lisp/init-ui.el
+++ b/.emacs.d/lisp/init-ui.el
@@ -169,7 +169,8 @@
 (use-package repeat
   :defer 5
   :config
-  (repeat-mode +1)
+  (let ((inhibit-message t))
+    (repeat-mode +1))
   (defvar buffer-repeat-map
     (let ((map (make-sparse-keymap)))
       (define-key map (kbd "<left>") #'previous-buffer)