diff options
author | Alan Pearce | 2017-03-16 16:32:58 +0100 |
---|---|---|
committer | Alan Pearce | 2017-03-16 16:32:58 +0100 |
commit | db6903e6fab9cff359a530ca2eee6ba3c7e44525 (patch) | |
tree | d7c37f1cea36b23174e948820ea001fcd3f1bf83 /tag-emacs/emacs.d | |
parent | 5c124af7c747b6eec279109bd61950c58514e6a5 (diff) | |
download | nixfiles-db6903e6fab9cff359a530ca2eee6ba3c7e44525.tar.lz nixfiles-db6903e6fab9cff359a530ca2eee6ba3c7e44525.tar.zst nixfiles-db6903e6fab9cff359a530ca2eee6ba3c7e44525.zip |
Emacs: Install projectile-ripgrep correctly
It used to be bundled with ripgrep.el, now it seems to be separate
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 82e17555..151efbf4 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -446,8 +446,9 @@ Step over Silver Search, here comes a new challenger. :if (executable-find "rg")) (use-package projectile-ripgrep - :bind (("C-c p s r" . projectile-ripgrep)) - :ensure nil) + :after (ripgrep projectile) + :if (executable-find "rg") + :bind (("C-c p s r" . projectile-ripgrep))) #+END_SRC ** Projectile |