From 63e8a31e7fbe95355e753eaa9e95c086a9559243 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Fri, 8 Aug 2025 20:20:13 +1000 Subject: [PATCH] add fish function for file name searching --- homes/modules/fish.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homes/modules/fish.nix b/homes/modules/fish.nix index 8fdcc4b..bf496db 100755 --- a/homes/modules/fish.nix +++ b/homes/modules/fish.nix @@ -39,6 +39,11 @@ curl -sL "https://www.gitignore.io/api/$type" end + # ripgrep on files + function rgf + rg --files | rg $args + end + set -g fish_greeting (rand_greet) '';