about summary refs log tree commit diff
path: root/init/settings.el
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-06-14T22·03+0200
committerVincent Ambo <tazjin@gmail.com>2018-06-14T22·03+0200
commit75749b68b0deb34588c8bd88597f1ac9583c815c (patch)
tree594b2bea2ce568d0da98f7abc679d1fb29536f5f /init/settings.el
parentecf68e357c5349d4cda9916152fdb371ee51571d (diff)
fix(settings): Add counsel-rg to ivy-prescient-excluded-commands
History should not be remembered for counsel-rg
Diffstat (limited to 'init/settings.el')
-rw-r--r--init/settings.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init/settings.el b/init/settings.el
index a32528012b4e..1c801cd09a07 100644
--- a/init/settings.el
+++ b/init/settings.el
@@ -11,9 +11,10 @@
 (setq ivy-use-virtual-buffers t)
 (setq enable-recursive-minibuffers t)
 
-;; Enable support for prescient in ivy
+;; Enable support for prescient in ivy & configure it
 (ivy-prescient-mode)
 (prescient-persist-mode)
+(add-to-list 'ivy-prescient-excluded-commands 'counsel-rg)
 
 ;; Move files to trash when deleting
 (setq delete-by-moving-to-trash t)