Add another consult-imenu bind, remove consult-theme

This commit is contained in:
Evie Litherland-Smith 2024-01-12 13:20:20 +00:00
parent 991e398312
commit 70e258a997

View file

@ -944,7 +944,7 @@ Set treesit to fontify all elements, default was 3 (out of 4)
(use-package consult (use-package consult
:ensure t :ensure t
:diminish :diminish
:bind (("<remap> <imenu>" . consult-imenu ) :bind (("<remap> <imenu>" . consult-imenu)
("<remap> <switch-to-buffer>" . consult-buffer) ("<remap> <switch-to-buffer>" . consult-buffer)
("<remap> <project-switch-to-buffer>" . consult-project-buffer) ("<remap> <project-switch-to-buffer>" . consult-project-buffer)
("<remap> <org-goto>" . consult-org-heading) ("<remap> <org-goto>" . consult-org-heading)
@ -953,8 +953,8 @@ Set treesit to fontify all elements, default was 3 (out of 4)
("C-c s f" . consult-fd) ("C-c s f" . consult-fd)
("C-c s g" . consult-ripgrep) ("C-c s g" . consult-ripgrep)
("C-c s e" . consult-flymake) ("C-c s e" . consult-flymake)
("C-c s j" . consult-imenu)
("C-c s i" . consult-info) ("C-c s i" . consult-info)
("C-c s t" . consult-theme)
:map minibuffer-local-map :map minibuffer-local-map
("C-r" . consult-history)) ("C-r" . consult-history))
:config (setq completion-in-region-function #'consult-completion-in-region)) :config (setq completion-in-region-function #'consult-completion-in-region))