Files
Powershell/Microsoft.PowerShell_profile.ps1
2026-01-06 14:29:45 +01:00

19 lines
419 B
PowerShell

# Setup starship prompt
Invoke-Expression (&starship init powershell)
# Setup mise
mise activate pwsh | Out-String | Invoke-Expression
# Setup Autosuggestion
Import-Module PSReadLine
Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete
Set-PSReadLineOption -PredictionSource History
# Setup Autocompletion for commands
# unsure if I like it
#Import-Module PSCompletions
# Aliases
Set-Alias -Name v -Value nvim