nix-files/hosts/common/programs/ripgrep.nix

10 lines
286 B
Nix
Raw Normal View History

{ sane-lib, ... }:
{
# .ignore file is read by ripgrep (rg), silver searcher (ag), maybe others.
# ignore translation files by default when searching, as they tend to have
# a LOT of duplicate text.
sane.programs.ripgrep.fs.".ignore" = sane-lib.fs.wantedText ''
po/
'';
}