diff options
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 3b97d22..b25f7d2 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -346,6 +346,19 @@ configuration with crux.el :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 |