diff --git a/docs/emacs/packages/misc.org b/docs/emacs/packages/misc.org index 982238f..76fcc45 100644 --- a/docs/emacs/packages/misc.org +++ b/docs/emacs/packages/misc.org @@ -104,21 +104,22 @@ What’s the point of using Emacs if you can’t tell everyone? "Fwd: "))))) #+end_src -** ~ivy-quick-find-files.el~ +** ~quick-find-files.el~ This package is a small utility package I’ve written in order to quickly find files across my filesystem. #+begin_src emacs-lisp -(use-package ivy-quick-find-files +(use-package quick-find-files :defer t :straight (ivy-quick-find-files :type git :host github - :repo "phundrak/ivy-quick-find-files.el" + :repo "phundrak/quick-find-files.el" :build t) :config - (setq ivy-quick-find-files-program 'fd - ivy-quick-find-files-dirs-and-exts '(("~/org" . "org") - ("~/Documents/university" . "org")) - ivy-quick-find-files-fd-additional-options "-L")) + (setq quick-find-files-program 'fd + quick-find-files-dirs-and-exts '(("~/org" . "org") + ("~/org/config/docs" . "org") + ("~/Documents/university" . "org")) + quick-find-files-fd-additional-options "-L")) #+end_src ** Keycast