configured ripgrep

This commit is contained in:
Tomas Rivera
2026-03-07 16:22:29 +01:00
parent 54ac8b0782
commit 5ca96feadb
3 changed files with 19 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
programs.ripgrep = {
enable = true;
arguments = [
"-S"
"-."
"-p"
"-n"
"-c"
];
};
programs.ripgrep-all = {
enable = true;
};
}