Created
November 5, 2025 01:41
-
-
Save stuarthallows/6c38d447f40468aae5899e01c6404a36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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