From c70448fd537f7ef1c6946f39c4e64d1140679e9c Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 15 Sep 2024 20:39:55 -0700 Subject: [PATCH] Deconflict dired and C-o map --- thoom-emacs/modules/thoom-tweaks.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/thoom-emacs/modules/thoom-tweaks.el b/thoom-emacs/modules/thoom-tweaks.el index 300805f..53a5193 100644 --- a/thoom-emacs/modules/thoom-tweaks.el +++ b/thoom-emacs/modules/thoom-tweaks.el @@ -28,6 +28,10 @@ ("n" . next-buffer) ("p" . previous-buffer))) +(use-package dired + :bind (:map dired-mode-map + ("C-o" . nil))) + (use-package emacs :bind (("C-h C-i" . info-apropos)))