예쁜 Windows 터미널과 스마트한 Powerline 도구로 직장에서 생산성을 높이는 방법
Windows Terminal is the latest software update for your boring and ugly looking command-line tools like cmd, powershell and WSL (Windows Subsystem for Linux)
주요 기능:
Microsoft’s intervention in the open-source community has opened up new doors for developers like us and has brought in more flexibility too.
전제 조건
Install Windows Terminal (권장)
Install Powershell Core
// Windows Users, downoad file with the extension .msi
PowerShell-X.X.X-win-x64.msi
Cascadia Code PL (Microsoft의 공식 명령줄 글꼴)
Nerd Fonts (우리 같은 괴짜를 위한 다양한 좋은 글꼴에서 선택)
STEPS TO INSTALL:
1. Download the .zip file from the releases page
2. Right-click on the font file and install it
설치 단계 - 가이드
Install-Module posh-git -Scope CurrentUser
Posh-Git은 정보 확인
git status
또는 git branch
에 대한 오래된 문제를 해결하고 흥미로운 기능을 제공합니다.탭 완성 인텔리센스(명령을 입력하면
Tab
버튼을 누르기만 하면 자동 완성이 됩니다)
Install-Module oh-my-posh -Scope CurrentUser
Oh-My-Posh adds powerful theming support and other capabilities to Powershell for making a fluid git experience possible
NOTE: While running the above commands, you may get an option to install NuGet. So go ahead and install it by pressing [Y] key
notepad $PROFILE
Ctrl + S
(Windows)를 사용하여 저장하십시오.Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox
Ctrl + ,
(또는 수동으로 아래와 같은 설정으로 이동) "defaults":
{
// Put settings here that you want to apply to all profiles.
"fontFace": "Cascadia Code PL",
},
빙고!
이제 꿈을 이루는 동안 생산성이 향상됩니다...
Reference
이 문제에 관하여(예쁜 Windows 터미널과 스마트한 Powerline 도구로 직장에서 생산성을 높이는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/logicalahara/how-to-increase-productivity-at-work-with-a-pretty-windows-terminal-and-smart-powerline-tools-35k텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)