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

10 lines
142 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2024-03-18 20:33:28 +00:00
home.packages = with pkgs; [ ripgrep ];
2024-03-16 22:12:53 +00:00
xdg.configFile."ripgrep/config".text = ''
--follow
--smart-case
'';
}