mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
11 lines
125 B
Nix
11 lines
125 B
Nix
|
{
|
||
|
programs.ripgrep = {
|
||
|
enable = true;
|
||
|
|
||
|
arguments = [
|
||
|
"--max-columns=2000"
|
||
|
"--smart-case"
|
||
|
];
|
||
|
};
|
||
|
}
|