Files
nixos-config/modules/home/ripgrep.nix
Christoph Schmatzler 8bd245d495 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-16 18:28:40 +00:00

22 lines
477 B
Nix

{
programs.ripgrep = {
enable = true;
arguments = [
"--max-columns=150"
"--max-columns-preview"
"--smart-case"
"--colors=column:none"
"--colors=column:fg:4"
"--colors=column:style:underline"
"--colors=line:none"
"--colors=line:fg:4"
"--colors=match:none"
"--colors=match:bg:0"
"--colors=match:fg:6"
"--colors=path:none"
"--colors=path:fg:14"
"--colors=path:style:bold"
];
};
}