From 58dc10265594e3c7da2036d5392c84467c459182 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Mon, 16 Oct 2023 19:00:06 -0400 Subject: [PATCH] feat(ripgrep): sort output --- common/modules/bash/programs.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/modules/bash/programs.nix b/common/modules/bash/programs.nix index 45cd67e..bed8b2d 100644 --- a/common/modules/bash/programs.nix +++ b/common/modules/bash/programs.nix @@ -12,6 +12,8 @@ "--hidden" "--glob=!.git/*" "--smart-case" + "--sort" + "path" ]; }; jq.enable = true;