mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 22:30:13 +00:00
fix warnings for flame
This commit is contained in:
@ -13,14 +13,19 @@ in
|
||||
|
||||
options.nmasur.presets.programs.ripgrep = {
|
||||
enable = lib.mkEnableOption "Ripgrep search tool";
|
||||
ignorePatterns = ''
|
||||
!.env*
|
||||
!.github/
|
||||
!.gitignore
|
||||
!*.tfvars
|
||||
.terraform/
|
||||
.target/
|
||||
/Library/'';
|
||||
ignorePatterns = lib.mkOption {
|
||||
type = lib.types.lines;
|
||||
description = "Patterns to ignore with ripgrep";
|
||||
default = ''
|
||||
!.env*
|
||||
!.github/
|
||||
!.gitignore
|
||||
!*.tfvars
|
||||
.terraform/
|
||||
.target/
|
||||
/Library/
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
Reference in New Issue
Block a user