Skip to content

Commit

Permalink
[Fix #1308] Remove ivy-prescient
Browse files Browse the repository at this point in the history
Turned out the package is not maintained currently.
  • Loading branch information
bbatsov committed Dec 21, 2020
1 parent 3f3f07e commit 5e03876
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
* Auto-install `adoc-mode` for AsciiDoc files.
* Add the `ag` package. It provides a nice alternative to `grep` and has nice Projectile integration.
* Added additional configuration modules for WSL (`prelude-wsl`) and Windows (`prelude-windows`).
* Add `ivy-prescient` to `prelude-ivy`.
* Add `prelude-selectrum` module. Selectrum a simpler alternative to `ivy-mode`.

### Changes
Expand Down
7 changes: 1 addition & 6 deletions modules/prelude-ivy.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@
;; Boston, MA 02110-1301, USA.

;;; Code:
(prelude-require-packages '(ivy ivy-prescient swiper counsel))
(prelude-require-packages '(ivy swiper counsel))

;;; Ivy
;;
;; ivy is a powerful alternative to the popular ido-mode

(require 'ivy)
(require 'counsel)
(require 'ivy-prescient) ;; must be loaded after counsel
(require 'diminish)

(ivy-mode 1)
Expand All @@ -49,9 +47,6 @@
(global-set-key (kbd "C-c C-r") 'ivy-resume)
(global-set-key (kbd "<f6>") 'ivy-resume)

;; smarter filtering and sorting for ivy
(ivy-prescient-mode 1)

(diminish 'ivy-mode)

;;; Swiper
Expand Down

0 comments on commit 5e03876

Please sign in to comment.