powershell/Documents/WindowsPowerShell/Microsoft.PowerShell_profil...

12 lines
346 B
PowerShell

Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
Set-PSReadLineOption -EditMode Emacs -BellStyle Visual
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"
}