Skip to content

Instantly share code, notes, and snippets.

@steadystatic
Created December 2, 2021 19:49
Show Gist options
  • Save steadystatic/50a9a8bfd7908ce0fa624628c5222769 to your computer and use it in GitHub Desktop.
Save steadystatic/50a9a8bfd7908ce0fa624628c5222769 to your computer and use it in GitHub Desktop.
Minimal PowerShell Profile for bash guy
# Uncomment $Workspace_Dir set preferred location (defaults to $home):
# $Workspace_Dir="Documents\workspace"
Set-Location $home\$Workspace_Dir
set-alias dc 'docker-compose'
set-alias vim 'nvim-qt'
set-alias ll 'dir'
set-alias grep 'findstr'
function rmrf {
cmd.exe /c del /f/s/q $args
cmd.exe /c rmdir /s/q $args
}
function touch {
echo $null > $args
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment