nix-config/home/ripgrep.nix

11 lines
125 B
Nix
Raw Normal View History

{
programs.ripgrep = {
enable = true;
arguments = [
"--max-columns=2000"
"--smart-case"
];
};
}