From d92851d6ea4cce83c37ed294061ceba35e494e1e Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Sat, 26 Jul 2025 13:41:00 +0200 Subject: [PATCH] Add fd usage examples to README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index db922d0..a2cbe38 100644 --- a/README.md +++ b/README.md @@ -176,6 +176,17 @@ Launch with `gitui` in any git repository for: - **btop**: Modern system monitor - **zoxide**: Smart cd with frecency algorithm +#### fd Usage Examples +```bash +fd filename # Find files/directories named "filename" +fd "*.nix" # Find all Nix files +fd -t f config # Only files (-t f = type file) +fd -t d config # Only directories (-t d = type directory) +fd -e js # All files with .js extension +fd -H hidden # Include hidden files (-H) +fd | fzf # Pipe to fzf for interactive selection +``` + ### Fonts - **Nerd Fonts**: FiraCode and JetBrains Mono with icon support