Skip to content

Instantly share code, notes, and snippets.

@krake747
Last active April 27, 2024 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krake747/e81a69a7c748040bb5b36202510c0a6d to your computer and use it in GitHub Desktop.
Save krake747/e81a69a7c748040bb5b36202510c0a6d to your computer and use it in GitHub Desktop.
krake747 PowerShell Profile
oh-my-posh init pwsh --config 'https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/gruvbox.omp.json' | Invoke-Expression
set-alias d docker
set-alias dcu dockerComposeUp
set-alias dcd dockerComposeDown
set-alias dcip dockerImagePrune
set-alias dn dotnet
set-alias g git
function dockerComposeUp {
docker compose up -d
}
function dockerComposeDown {
docker compose down
}
function dockerImagePrune {
docker image prune -f
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment