마이크로소프트 스토어에서 설치 가능
Microsoft Store > Windows Terminal 검색 > 다운로드
Microsoft Powershell 여기서 msi 파일 다운로드 및 실행해서 설치
oh-my-posh 참고해서 oh-my-posh 설치. 설치 후 Windows Terminal 재실행
winget install JanDeDobbeleer.OhMyPosh -s winget
scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/oh-my-posh.json
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))
Windows Terminal에 아래의 코드 입력
Install-Module -Name Terminal-Icons -Repository PSGallery
PowerShell
폴더 생성 후 Microsoft.PowerShell_profile.ps1
파일 생성mkdir $HOME\Documents\PowerShell
fsutil file createNew $PROFILE 0
notepad $PROFILE
oh-my-posh init pwsh --config 'https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/tonybaloney.omp.json' | Invoke-Expression
Import-Module -Name Terminal-Icons
oh-my-posh font install --user
# CascadiaCode 설치
Font 적용
Windows Terminal 설정에서 모양 선택
글꼴 > CaskaydiaCove Nerd Font
로 설정
Windows Terminal 재실행
Install-Module -Name PSReadLine -AllowClobber -Force
Microsoft.PowerShell_profile.ps1 파일의 아래의 내용 추가
# Microsoft.PowerShell_profile.ps1
oh-my-posh init pwsh --config 'https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/tonybaloney.omp.json' | Invoke-Expression
Import-Module -Name Terminal-Icons
# 내용 추가
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -EditMode Windows