From 48b3d621f3619fa0462d39c2d53cb0fcac667d01 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 18 Jun 2024 18:10:46 +0100 Subject: [PATCH] Remove which-function, remap consult-history for eshell-mode as well, dictionary updates --- dictionary | 1 + init.el | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dictionary b/dictionary index 3a3e92b..922b8aa 100644 --- a/dictionary +++ b/dictionary @@ -28,3 +28,4 @@ divspec et github nixpkgs +ReqCo diff --git a/init.el b/init.el index e36747c..ce46ce7 100644 --- a/init.el +++ b/init.el @@ -167,13 +167,11 @@ (use-package avy :bind ((" " . avy-goto-char))) -(use-package which-func - :init (which-function-mode)) - (use-package shell :bind (("C-c t s" . shell))) (use-package eshell + :defines eshell-mode-map :bind (("C-c t e" . eshell))) (use-package calc @@ -760,7 +758,9 @@ :map minibuffer-local-map (" " . consult-history) :map comint-mode-map - (" " . consult-history))) + (" " . consult-history) + :map eshell-mode-map + (" " . consult-history))) (use-package consult-eglot :after (consult eglot)