mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
2b8fc665f6
Aliases should be avoided since they are only relevant to one shell.
11 lines
125 B
Nix
11 lines
125 B
Nix
{
|
|
programs.ripgrep = {
|
|
enable = true;
|
|
|
|
arguments = [
|
|
"--max-columns=2000"
|
|
"--smart-case"
|
|
];
|
|
};
|
|
}
|