Add prescient sorting to company-mode

This commit is contained in:
Riyyi
2021-01-06 15:28:07 +01:00
parent 9cfd7ccb4c
commit 4b299480f2
+6 -3
View File
@@ -470,7 +470,7 @@ Autocomplete packages (includes code completion and snippets).
**** Company **** Company
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package company (use-package company
:defer t :defer t
:custom :custom
(company-idle-delay 0.2) (company-idle-delay 0.2)
@@ -484,8 +484,11 @@ Autocomplete packages (includes code completion and snippets).
php-mode php-mode
shell-mode shell-mode
shell-script-mode) shell-script-mode)
. company-mode) . company-mode))
)
(use-package company-prescient
:after company
:config (company-prescient-mode 1))
#+END_SRC #+END_SRC
**** Flycheck **** Flycheck