Skip to content

Latest commit

 

History

History
87 lines (62 loc) · 2.92 KB

README.kor.md

File metadata and controls

87 lines (62 loc) · 2.92 KB

목차

난 진짜 진짜 진짜 모르겠다 나 이거 오늘 못하면 잠 못잔다

010-87894-3202



1. 파워쉘 설치하기

  1. 윈도우 버튼을 눌러 cmd를 검색합니다.
  2. 명령 프롬프트를 관리자 권한으로 실행합니다.
  3. 아래의 명령어를 통해 파워쉘을 설치합니다.
 # install with winget command
 winget search Microsoft.PowerShell
  1. 윈도우 + r을 누르고 wt를 입력해 설치가 잘 되었는지 확인합니다.
  2. 아래의 명령어로 파워쉘을 관리자 권한으로 실행합니다.
     start-process powershell -verb runAs
     Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

6.권한 설정이 완료되면, 파워쉘이 시작될 때 참조하는 $PROFILE을 설정합니다.

  cd ~/Documents
  mkdir 'Windows PowerShell'
  New-Item '.\Windows PowerShell\profile.ps1'



자 이제 거의다 왔습니다!

8.이제, 터미널을 조금 더 예쁘게 만들어봅시다!

  1. 먼저 이모지와 다양한 유니코드 문자를 지원하는 코딩 폰트를 설치합니다.

image

  1. Download Oh-My-Posh 터미널 테마를 위힌 Oh-My-Posh 라이브러리
  # install with winget command
  winget install JanDeDobbeleer.OhMyPosh -s winget
  1. 마지막으로, 파워쉘 프로파일 저장이 완료되었다면 저장한 폴더로 이동해 powershell로 아래 init.ps1 스크립트를 실행해줍니다.
 # open the powerhsell dir which located profile file
 ii $HOME'/Documents/Windows PowerShell'
how to run the PS script
  1. init.ps1 파일의 실행이 완료되었을 경우, 이어서 Microsoft.PowerShell_profile.ps1 실행시켜 줍니다.

3. 파워쉘 $PROFILE 설정하기

  • Press ctrl + shift + , in PowerShell to open the JSON settings file.

HAPPY HACKING :)