launch it from the command line to the current directory
wt -d .wt -d . cmdwt -d . wsl
Setting Up Aliases
Set-Alias [alias] [target command]- ex
- Set-Alias vim nvim
- Set-Alias vi nvim
Check Alias Configuration
Get-Alias- ex
Alias vi -> nvim.exe Alias vim -> nvim.exe
Finding the Profile Path
> $profile
C:\Users\(username)\Documents\PowerShell\Microsoft.PowerShell_profile.ps1Microsoft.PowerShell_profile.ps1
function kubectl { minikube kubectl -- $args }
Set-Alias -Name k -Value kubectl