diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-18 15:02:47 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-18 15:02:47 +0100 |
commit | 027af86984cde7b128acd22b090bbed984ee241e (patch) | |
tree | 1826108aac1856093454992f8b2d874c7b7fff5f /.emacs.d/lisp/init-navigation.el | |
parent | 58df636efdaceed1625e19e5d9b792e6e73e873d (diff) | |
download | dotfiles-027af86984cde7b128acd22b090bbed984ee241e.tar.gz |
Use fd as it respects .gitignore/.ignore
Diffstat (limited to '.emacs.d/lisp/init-navigation.el')
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index c9a3e90..13aac52 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -45,9 +45,8 @@ (list prefix-arg (when-let ((s (symbol-at-point))) (symbol-name s)))) (affe-find dir initial)) - ;; TODO is this faster and/or more portable? - ;; :custom - ;; (affe-find-command "fd --color never -t f") + :custom + (affe-find-command "fd --color never -t f") :bind ("C-#" . affe-grep) ("C-c z" . affe-find) @@ -56,6 +55,7 @@ ;; TODO - which of these are useful? (use-package avy + :after key-chord :custom (avy-background t) (avy-style 'pre) |