From 1293883fa138ace14efc5855c9b5bd7626519b8a Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 8 May 2025 12:52:09 +0100 Subject: [PATCH] Add abbreviations for the `find` command --- modules/home-manager/cli/zsh/abbreviations.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/home-manager/cli/zsh/abbreviations.nix b/modules/home-manager/cli/zsh/abbreviations.nix index 985fc5c9..4693c653 100644 --- a/modules/home-manager/cli/zsh/abbreviations.nix +++ b/modules/home-manager/cli/zsh/abbreviations.nix @@ -13,6 +13,12 @@ evl = "export-video-list"; vv = "cat ~/Documents/videos.json"; + f = "find ."; + fd = "find . -type d"; + fdn = "find . -type d -name"; + ff = "find . -type f"; + ffn = "find . -type f -name"; + g = "git"; ga = "git add"; gan = "git add -N";