Skip to content

Instantly share code, notes, and snippets.

@suryakencana007
Created January 28, 2025 03:37
Show Gist options
  • Save suryakencana007/24863e279df63f6f782ceea11422e18c to your computer and use it in GitHub Desktop.
Save suryakencana007/24863e279df63f6f782ceea11422e18c to your computer and use it in GitHub Desktop.
Invoke-Expression (&starship init powershell)
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadLine
}
Import-Module -Name Terminal-Icons
# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -EditMode Windows
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment