모든 Windows 터미널에서 오 마이 포쉬(코드 통합 터미널도 가능!!)
2114 단어 windowspowershellvscode
먼저 여기를 방문하거나 아래 명령을 사용하여 Windows 컴퓨터에 'oh my posh'를 설치합니다.
winget install JanDeDobbeleer.OhMyPosh -s winget
글꼴 설치
NOTE - you can try any font but 'Meslo' worked well for '1_shell' theme
테마 설치 - [공식 문서]
oh-my-posh init pwsh --config ~/.1_shell.omp.json | Invoke-Expression
터미널용 프로필 생성 [공식 문서]
notepad $PROFILE'
or
New-Item -Path $PROFILE -Type File -Force
oh-my-posh init pwsh | Invoke-Expression
터미널의 settings.json 수정
"profiles":
{
"defaults": {
"font":
{
"face": "MesloLGM NF"
}
}
...
VS 코드 통합 터미널 설정 수정
그게 다야, 이제 당신은 10X 개발자입니다 😝
Reference
이 문제에 관하여(모든 Windows 터미널에서 오 마이 포쉬(코드 통합 터미널도 가능!!)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/badgamerbad/oh-my-posh-on-all-windows-terminals-vs-code-integrated-terminal-too-3jg8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)