nix-config/home/ripgrep.nix
Donovan Glover 2b8fc665f6
meta: Prefer home-manager module over alias for ripgrep
Aliases should be avoided since they are only relevant to one shell.
2024-08-24 12:15:42 -04:00

11 lines
125 B
Nix

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