diff options
| author | Omar Antolín <omar.antolin@gmail.com> | 2020-04-23 09:00:50 -0500 |
|---|---|---|
| committer | Omar Antolín <omar.antolin@gmail.com> | 2020-04-23 09:00:50 -0500 |
| commit | 42eb6bfc6ecf21028a2f67c5a8436368d8364457 (patch) | |
| tree | 12a9d6e36eb79608c24ba27a1d542c86ed3ef25a | |
| parent | b059c15911894035eba8cf097699dbf86d6c5c97 (diff) | |
Now on MELPA!
| -rw-r--r-- | README.org | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -14,8 +14,18 @@ Emacs completion UI (sometimes called minibuffer tab completion) or with the built-in Icomplete package (which is similar to the more well-known Ido Mode). -So to test this completion method you can put =orderless.el= somewhere -on your =load-path=, and use the following configuration: +If you use MELPA, the easiest way to install =orderless= is via +=package-install=. If you use both MELPA and =use-package=, you can use: + +#+begin_src emacs-lisp + (use-package orderless + :ensure t + :init (icomplete-mode) ; optional but recommended! + :custom (completion-styles '(orderless))) +#+end_src + +Alternatively, put =orderless.el= somewhere on your =load-path=, and use +the following configuration: #+begin_src emacs-lisp (require 'orderless) |
