diff options
Diffstat (limited to 'mixins/ui.el')
-rw-r--r-- | mixins/ui.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mixins/ui.el b/mixins/ui.el index 54a71c0..4a3f003 100644 --- a/mixins/ui.el +++ b/mixins/ui.el @@ -74,10 +74,14 @@ ;; Consult: Misc. enhanced commands (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 - )) + ("C-s" . consult-line)) ;; orig. isearch + :config + ;; Narrowing lets you restrict results to certain groups of candidates + (setq consult-narrow-key "<")) (use-package eshell :bind (("C-r" . consult-history))) |