Skip to content

Instantly share code, notes, and snippets.

@stuarthallows
Created November 5, 2025 01:41
Show Gist options
  • Select an option

  • Save stuarthallows/6c38d447f40468aae5899e01c6404a36 to your computer and use it in GitHub Desktop.

Select an option

Save stuarthallows/6c38d447f40468aae5899e01c6404a36 to your computer and use it in GitHub Desktop.
# Quick edits
alias reload='source ~/.zshrc'
# Development shortcuts
alias tree='tree -C' # Colourized tree
# Modern replacements (install via brew/apt/etc first)
alias cat='bat' # Better cat with syntax highlighting
alias top='htop' # Better top
alias du='dust' # Better du
alias df='duf' # Better df
alias versions='
echo "🔷 .NET: $(dotnet --version)" &&
echo "✨ Aspire: $(aspire --version)" &&
echo "☁️ AZD: $(azd version)" &&
echo "🟩 Node.js: $(node --version)" &&
echo "📦 pnpm: $(pnpm --version)" &&
echo "🐳 Docker: $(docker --version)"
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment