Emacs: Configure ripgrep
Alan Pearce alan@alanpearce.uk
Tue, 29 Nov 2016 15:30:09 +0100
1 files changed, 13 insertions(+), 0 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -346,6 +346,19 @@ :defer 30 :config (setq ag-project-root-function #'projectile-project-root)) #+END_SRC +** Ripgrep + +Step over Silver Search, here comes a new challenger. + +#+BEGIN_SRC emacs-lisp + (use-package ripgrep + :if (executable-find "rg")) + + (use-package projectile-ripgrep + :bind (("C-c p s r" . projectile-ripgrep)) + :ensure nil) +#+END_SRC + ** Projectile Projectile is awesome for working in projects, especially VCS-backed