Add basic powershell profile

This commit is contained in:
Adam Goldsmith 2022-09-09 12:40:34 -04:00
commit a92243688a
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
Set-PSReadLineOption -EditMode Emacs
Function ecn { emacsclient -c -n @args }
New-Alias et ecn
# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}