Add fd usage examples to README
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
6e8fa29229
commit
d92851d6ea
1 changed files with 11 additions and 0 deletions
11
README.md
11
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue