43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.programs.ripgrep;
|
||
|
configPath = "${config.xdg.configHome}/ripgrep/ripgreprc";
|
||
|
in {
|
||
|
meta.maintainers = [ hm.maintainers.pedorich-n ];
|
||
|
|
||
|
options = {
|
||
|
programs.ripgrep = {
|
||
|
enable = mkEnableOption "Ripgrep";
|
||
|
|
||
|
package = mkPackageOption pkgs "ripgrep" { };
|
||
|
|
||
|
arguments = mkOption {
|
||
|
type = with types; listOf str;
|
||
|
default = [ ];
|
||
|
example = [ "--max-columns-preview" "--colors=line:style:bold" ];
|
||
|
description = ''
|
||
|
List of arguments to pass to ripgrep. Each item is given to ripgrep as
|
||
|
a single command line argument verbatim.
|
||
|
|
||
|
See <https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md#configuration-file>
|
||
|
for an example configuration.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home = mkMerge [
|
||
|
{ packages = [ cfg.package ]; }
|
||
|
(mkIf (cfg.arguments != [ ]) {
|
||
|
file."${configPath}".text = lib.concatLines cfg.arguments;
|
||
|
|
||
|
sessionVariables."RIPGREP_CONFIG_PATH" = configPath;
|
||
|
})
|
||
|
];
|
||
|
};
|
||
|
}
|