Add rg check to core/doctor.el
This commit is contained in:
parent
798e10c4f2
commit
4575cbef05
1 changed files with 4 additions and 2 deletions
|
@ -18,8 +18,10 @@
|
||||||
(/ size 1024))
|
(/ size 1024))
|
||||||
(explain! "Consider deleting it from your system (manually)"))))
|
(explain! "Consider deleting it from your system (manually)"))))
|
||||||
|
|
||||||
(when (not (executable-find doom-projectile-fd-binary))
|
(unless (executable-find doom-projectile-fd-binary)
|
||||||
(warn! "Couldn't find the `fd' binary; project file searches will be slightly slower"))
|
(warn! "Couldn't find the `fd' binary; project file searches will be slightly slower")
|
||||||
|
(unless (executable-find "rg")
|
||||||
|
(warn! "Couldn't find the `rg' binary either; project file searches will be even slower")))
|
||||||
|
|
||||||
(let ((default-directory "~"))
|
(let ((default-directory "~"))
|
||||||
(require 'projectile)
|
(require 'projectile)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue