Add powerful tool combination examples to README
Shows how to use fd, fzf, and nvim together for interactive file selection workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
af5add2783
commit
303cf90e95
1 changed files with 18 additions and 0 deletions
18
README.md
18
README.md
|
|
@ -205,6 +205,24 @@ fzf --preview 'bat --style=numbers --color=always {}'
|
|||
- `Ctrl+R` - Search command history interactively
|
||||
- `Alt+C` - Change to selected directory
|
||||
|
||||
#### Powerful Tool Combinations
|
||||
```bash
|
||||
# Find and open file with nvim using interactive selection
|
||||
nvim $(fd --type f | fzf)
|
||||
|
||||
# Find and edit Nix configuration files
|
||||
nvim $(fd "*.nix" | fzf)
|
||||
|
||||
# Search text content and open matching file
|
||||
nvim $(rg -l "search_term" | fzf)
|
||||
|
||||
# Preview files while selecting which one to edit
|
||||
nvim $(fd --type f | fzf --preview 'bat --color=always {}')
|
||||
|
||||
# Find and edit files in specific directory
|
||||
nvim $(fd --type f . ~/.config | fzf)
|
||||
```
|
||||
|
||||
### Fonts
|
||||
- **Nerd Fonts**: FiraCode and JetBrains Mono with icon support
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue