aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshton Wiersdorf <mail@wiersdorf.dev>2023-09-18 12:49:28 -0600
committerAshton Wiersdorf <mail@wiersdorf.dev>2023-09-18 12:49:28 -0600
commitd7c3127d206b269e0f43c3bd747885a428a8a815 (patch)
treef8ad3be5abbdfe911a2f1aa31a4be971cdcc2a41
parent3561b11ce9f92b233815fc2a856d26ea6d94fe63 (diff)
Add binding for consult-ripgrep
-rw-r--r--extras/base.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/extras/base.el b/extras/base.el
index 5e49625..f9c5a64 100644
--- a/extras/base.el
+++ b/extras/base.el
@@ -33,11 +33,12 @@
;; Consult: Misc. enhanced commands
(use-package consult
:ensure t
- ;; Other good things to bind: consult-ripgrep, consult-line-multi,
- ;; consult-history, consult-outline
- :bind (("C-x b" . consult-buffer) ; orig. switch-to-buffer
- ("M-y" . consult-yank-pop) ; orig. yank-pop
- ("C-s" . consult-line)) ; orig. isearch
+ ;; Other good things to bind: consult-line-multi, consult-history,
+ ;; consult-outline, consult-org-agenda, etc.
+ :bind (("C-x b" . consult-buffer) ; orig. switch-to-buffer
+ ("M-y" . consult-yank-pop) ; orig. yank-pop
+ ("M-s r" . consult-ripgrep)
+ ("C-s" . consult-line)) ; orig. isearch
:config
;; Narrowing lets you restrict results to certain groups of candidates
(setq consult-narrow-key "<"))