diff options
author | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-03-14 15:27:16 -0600 |
---|---|---|
committer | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-03-14 15:28:44 -0600 |
commit | fe99f00683ab087748be5c89f3cca4523bfbf536 (patch) | |
tree | 7d64f9c9c5a640bbeb1546778a66cb935de81a13 /mixins/ui.el | |
parent | b05de096968ca584714f643611429fc7fbcef400 (diff) |
Big update: add initial evil-mode (vim emulation) config; fix typos
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))) |