Remove consult-recent-file and consult-imenu binds

Keep remap of original imenu to consult-imenu though

Add consult-outline bind
This commit is contained in:
Evie Litherland-Smith 2024-02-19 08:11:15 +00:00
parent 29bdd978bf
commit 77033f7e38

View file

@ -1,5 +1,8 @@
#+title: Completion
#+author: Evie Litherland-Smith
#+email: evie@xenia.me.uk
#+filetags: :emacs:config:org:
#+property: header-args:emacs-lisp :tangle yes :mkdirp yes :results output silent
* Vertico
#+begin_src emacs-lisp
(use-package vertico
@ -107,11 +110,10 @@
("<remap> <project-switch-to-buffer>" . consult-project-buffer)
("<remap> <org-goto>" . consult-org-heading)
("C-c s l" . consult-line)
("C-c s r" . consult-recent-file)
("C-c s o" . consult-outline)
("C-c s f" . consult-fd)
("C-c s g" . consult-ripgrep)
("C-c s e" . consult-flymake)
("C-c s j" . consult-imenu)
("C-c s i" . consult-info)
:map minibuffer-local-map
("C-r" . consult-history))