aboutsummaryrefslogtreecommitdiff
path: root/mixins/base.el
diff options
context:
space:
mode:
authorAshton Wiersdorf <mail@wiersdorf.dev>2023-08-01 22:16:47 -0600
committerAshton Wiersdorf <mail@wiersdorf.dev>2023-08-01 22:16:47 -0600
commitac890acfa3b35237e8db75f03b480e2cf6eb49c8 (patch)
tree1c93bbcc5ec3651c134e3dc03c3434f1213c7c12 /mixins/base.el
parent85e198896f2ed91851f48e7f455717625c1a425d (diff)
Misc. tweaks
Diffstat (limited to 'mixins/base.el')
-rw-r--r--mixins/base.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/mixins/base.el b/mixins/base.el
index 20bb957..08eb6da 100644
--- a/mixins/base.el
+++ b/mixins/base.el
@@ -32,10 +32,10 @@
(use-package consult
:ensure t
;; Other good things to bind: consult-ripgrep, consult-line-multi,
- ;; consult-history, consult-outline, consult-error
- :bind (("C-x b" . consult-buffer) ;; orig. switch-to-buffer
- ("M-y" . consult-yank-pop) ;; orig. yank-pop
- ("C-s" . consult-line)) ;; orig. isearch
+ ;; 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
:config
;; Narrowing lets you restrict results to certain groups of candidates
(setq consult-narrow-key "<"))
@@ -43,7 +43,7 @@
(use-package embark
:ensure t
:after avy
- :bind (("C-c a" . embark-act))
+ :bind (("C-c a" . embark-act)) ; bind this to an easy key to hit
:init
;; Add the option to run embark when using avy
(defun bedrock/avy-action-embark (pt)