dotfiles/nix/modules/home-manager/features/cli/ripgrep.nix

10 lines
142 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ ripgrep ];
xdg.configFile."ripgrep/config".text = ''
--follow
--smart-case
'';
}