docs(emacs/misc): Switch ivy-quick-find-files to quick-find-files

This commit is contained in:
Lucien Cartier-Tilet 2023-12-07 19:48:05 +01:00
parent 58769bb898
commit 244adf1972
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA

View File

@ -104,21 +104,22 @@ Whats the point of using Emacs if you cant tell everyone?
"Fwd: ")))))
#+end_src
** ~ivy-quick-find-files.el~
** ~quick-find-files.el~
This package is a small utility package Ive 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