1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-03-07 10:59:55 +01:00
config/modules/common/ripgrep.nix

16 lines
350 B
Nix

{ ... }: {
environment.shellAliases = {
todo = /* sh */ ''rg "todo|fixme" --colors match:fg:yellow --colors match:style:bold'';
todos = /* sh */ "nvim ~/todo.md";
};
home-manager.sharedModules = [{
programs.ripgrep = {
enable = true;
arguments = [
"--line-number"
"--smart-case"
];
};
}];
}