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
-1
View File
@@ -164,7 +164,6 @@ wl-clipboard # cli copy/past utilities for Wayland
jp # lightweight and flexible cli JSON parser
notepad-next
libnotify # Library that sends desktop notifications to a notification daemon
ripgrep #better grepp
hyprkeys # keybind helper
cowsay
cmatrix
+1
View File
@@ -26,6 +26,7 @@ imports = [
../../modules/home-manager/anki.nix # we use only for some settings. see ../../modules/nixos/anki.nix for activating
../../modules/home-manager/librewolf.nix # privacy browser
../../modules/home-manager/cursor.nix # cursor (the icon not the app)
../../modules/home-manager/ripgrep.nix # better grep
];
+18
View File
@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
programs.ripgrep = {
enable = true;
arguments = [
"-S"
"-."
"-p"
"-n"
"-c"
];
};
programs.ripgrep-all = {
enable = true;
};
}