7 lines
143 B
EmacsLisp
7 lines
143 B
EmacsLisp
|
;; Emacs search tool based on ripgrep.
|
||
|
;; https://github.com/dajva/rg.el
|
||
|
(use-package rg
|
||
|
:ensure t
|
||
|
:config
|
||
|
(rg-enable-default-bindings))
|