You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: "Dangerous mode" bypasses confirmation prompts. Use when you trust the AI to make changes autonomously.
Bun Project Helpers
Alias
Command
Description
br
bun run dev
Start dev server
bl
bun run lint
Run linter
bt
bun run type-check
Run type checker
Modern CLI Replacements
These automatically replace standard commands when the modern alternative is installed:
Alias
Replaced By
Features
ls
lsd
Icons, colors
ll
lsd -l
Long format with icons
la
lsd -la
All files, long format
tree
lsd --tree
Tree view with icons
cat
bat
Syntax highlighting
grep
rg (ripgrep)
10x faster search
find
fd
Simpler, faster
top
btop
Beautiful resource monitor
df
duf
Modern disk free
du
ncdu
Interactive disk usage
vim
nvim
Neovim
Tailscale (VPN)
Alias
Command
Description
ts
tailscale status
Show connection status
tsup
sudo tailscale up
Connect to tailnet
tsdown
sudo tailscale down
Disconnect from tailnet
tsip
tailscale ip -4
Show your Tailscale IPv4
Tailscale Usage Example
# First time setup on a new machine
tsup # Connect (opens browser for auth)# Check your status
ts # Shows connected devices# Get your IP for SSH
tsip # e.g., 100.64.0.1# From another machine on your tailnet:
ssh user@100.64.0.1
Quick Help
Alias
Command
Description
help
tldr
Simplified man pages
Usage Example
help tar # Shows common tar exampleshelp git-rebase # Shows git rebase exampleshelp docker-compose # Shows docker compose examples
SSH / Remote Access
Alias
Command
Description
mssh
mosh --ssh="ssh -o StrictHostKeyChecking=no"
Mosh without host key check
Usage Example
# Regular mosh (handles disconnects gracefully)
mosh user@host
# Using the alias (skips host key confirmation)
mssh user@host
Adding Custom Aliases
Add your own aliases to ~/.zshrc.local (created automatically, not overwritten by updates):
# Example custom aliasesalias proj='cd ~/projects/my-project'alias serve='python -m http.server 8000'