- ls → eza: Enhanced file listing with colors, icons, and tree view
ls- List files with colors and directories firstll- Long format with detailsla- List all including hidden filestree- Tree view of directory structure
- cat → bat: Syntax highlighting and line numbers
- cd → zoxide: Smart directory jumping (use
zcommand) - find → fd: Fast and user-friendly file search
- grep → ripgrep: Blazing fast text search
- git diff → delta: Beautiful side-by-side diffs with syntax highlighting
bench <command>- Benchmark command performance (hyperfine)loc- Show code statistics (tokei)ast <pattern>- Advanced code search with AST-based patternsastf <pattern> <lang>- Language-specific AST searchwatch <cmd>- Run command on file changes (entr)
api <METHOD> <URL>- Make HTTP requests with formatted JSON outputpreview <file/dir>- Smart preview with syntax highlightingproject <name>- Quick project switcher with auto-navigation
wf- Warp workflow shortcutwfl- List available workflowswfr- Run a workflow- Available workflows:
- Git Feature Branch - Create and push feature branches
- Docker Development - Common Docker tasks
- Project Setup - Clone and setup new projects
l- eza -la (enhanced ls)lt- Tree view with 2 levelslm- List by modification timegst- Compact git statusglog- Beautiful git log with colors, graph, and relative timegdiff- Git diff with deltadps- Docker ps with clean formatdlog- Docker logs with tailzshrc- Quick edit .zshrczshreload- Reload shell config
..,...,....- Navigate up directories~- Go to home directorymkcd <dir>- Create directory and cd into ittmpd- Create temp directory and cd into ithome- Go to home directorypath- Show PATH in readable formatextract <file>- Extract any archive type (enhanced version with progress)backup <file>- Create timestamped backupcopy- Enhanced copy with progress (rsync)
gs- git statusga- git addgc- git commitgp- git pushgl- git log --onelinegd- git diffgb- git branchgco- git checkoutgpl- git pullgf- git fetchgm- git mergegr- git rebasegst- git stash
git st- statusgit lg- pretty log with graphgit lga- log all branchesgit hist- formatted historygit uncommit- undo last commit (keep changes)git amend- amend without editing messagegit cleanup- delete merged branchesgit sync- fetch and rebase from origin/main
gci- Interactive commit helpergciq- Quick interactive commitgcft "msg"- feat: msggcfx "msg"- fix: msggcd "msg"- docs: msggcfs scope "msg"- feat(scope): msggcxs scope "msg"- fix(scope): msggcaf- git add . && feat commitcommit-help- Show commit format guidegchelp- View full commit guide
d- dockerdc- docker-composedps- docker ps (enhanced format in Warp)dpsa- docker ps -adi- docker imagesdlog- docker logs -f (with tail in Warp)dex- docker exec -itdrm- docker rmdrmi- docker rmi
devinfo- Show development environment infopsgrep <name>- Find process by namecalc <expr>- Quick calculatorweather [location]- Get weather inforeload- Reload shell configurationip- Show local IP addressflushdns- Flush DNS cache (macOS)showfiles/hidefiles- Toggle hidden files in Finder
rm,cp,mv- Interactive mode by default
vim,vi,v- All mapped to neovim
- atuin - Cloud-synced searchable shell history
- Access with custom keybinding (not Ctrl+R by default)
atuin search- Search command history
- mcfly - Neural network powered history (replaces Ctrl+R if enabled)
- navi - Interactive command cheatsheets (Ctrl+G)
- direnv - Auto-load project-specific environment variables
- Use
fzffor fuzzy finding files (Ctrl+T) - Use
zoxidewithz <partial-name>to jump to frequently used directories - Warp disables Starship prompt (uses its own enhanced prompt)
- Git now uses delta for beautiful side-by-side diffs
- Use
benchto compare performance of different commands - Warp workflows can automate multi-step processes
- Use Cmd+P for Warp command palette
- Use Cmd+D to duplicate blocks in Warp
- Type naturally - Warp AI helps with command suggestions
# Benchmark command performance
bench 'find . -name "*.js"' 'fd -e js'
# Smart project navigation
project my-app
# API testing with formatting
api GET https://api.github.com/users/github
# View code statistics
loc
# Advanced code search
ast 'console.log($$$)'
# Create feature branch workflow
wfr "Git Feature Branch"Remember: These tools are already configured and ready to use!