Use prescient.el

This commit is contained in:
Jeremy Dormitzer 2021-02-03 12:43:36 -05:00
parent f3f45d8521
commit c966b23b06

View File

@ -5122,6 +5122,22 @@ An alternative minibuffer completion framework:
(setq xref-show-xrefs-function #'ivy-xref-show-xrefs))
#+END_SRC
[[https://github.com/raxod502/prescient.el][Prescient.el]] adds sorting and filtering to completion candidates:
#+begin_src emacs-lisp
(use-package prescient)
(use-package ivy-prescient
:after (prescient ivy)
:config
(ivy-prescient-mode)
(prescient-persist-mode)
:custom
(ivy-prescient-enable-filtering nil)
(ivy-prescient-sort-commands '(:not swiper
swiper-isearch
counsel-imenu
counsel-M-x)))
#+end_src
* graphviz
#+BEGIN_SRC emacs-lisp