aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-02-03 20:12:42 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-02-03 20:12:42 -0600
commitaaf4ca9bcfd31551e91cbb5f1430e24a7a9345ac (patch)
tree5f18ceba32bd131ab89b3dfdea7bf99d7d787a26 /common
parentb709f3335ec8dcac3028723176ac5cd089c653f6 (diff)
system changes
Diffstat (limited to 'common')
-rw-r--r--common/.config/emacs/init.el.org6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index bd714d3..b6efa78 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -135,6 +135,12 @@ Install and configure =visual-fill-column= to make some file types display with
* Behaviour
+Emacs has behaved oddly when accidentally scrolling a little bit while the control key is held. The text scale goes all the way up and then Emacs seems to hang. Just disable this behaviour.
+#+begin_src emacs-lisp
+ (global-unset-key (kbd "<C-wheel-up>"))
+ (global-unset-key (kbd "<C-wheel-down>"))
+#+end_src
+
Make Emacs confirm that I want to close it on kill.
#+begin_src emacs-lisp
(setq confirm-kill-emacs 'yes-or-no-p)