250x250
Notice
Recent Posts
«   2024/06   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
관리 메뉴

일상 코딩

[링크] 맥 터미널 iterms2 Powerlevel 10k 세팅 및 환경 설정 본문

Mac OS/터미널 세팅

[링크] 맥 터미널 iterms2 Powerlevel 10k 세팅 및 환경 설정

polarcompass 2022. 12. 16. 14:40
728x90

https://www.youtube.com/watch?v=CF1tMjvHDRA

최종 터미널 세팅 화면

명령어 모음 페이지

https://www.josean.com/posts/terminal-setup

 

How To Setup Your Mac Terminal

curl https://raw.githubusercontent.com/josean-dev/dev-environment-files/main/coolnight.itermcolors --output ~/Downloads/coolnight.itermcolors

www.josean.com

 

iTerms / Agnoster / OCEAN-NEXT / Hack 등
앞서 작성한 터미널 세팅 후 PowerLevel 10K 설치 후 나타는 문제들 해결 방법

 

prompt_context:2: command not found: prompt_segment 문제 해결 방법

https://github.com/Powerlevel9k/powerlevel9k/issues/423

 

prompt_context:2: command not found: prompt_segment · Issue #423 · Powerlevel9k/powerlevel9k

After each command i got this error prompt_context:2: command not found: prompt_segment Why it can be?

github.com

[oh-my-zsh] plugin 'zsh-syntax-highlighting' not found 문제 해결 방법

https://github.com/ohmyzsh/ohmyzsh/issues/7688

 

Warning: plugin zsh-syntax-highlighting not found · Issue #7688 · ohmyzsh/ohmyzsh

mac 10.14.3 Just updated to the latest oh-my-zsh by pulling master and am getting the following warning now when starting a new shell. Warning: plugin zsh-syntax-highlighting not found Warning: plu...

github.com

1. zsh-syntax-highlighting 설치

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting

2.    .zshrc 에서 plugin 부분 주석 처리 혹은 삭제

# .zshrc 파일 에디터로 연다
# 셋 중 본인이 편한 걸로 연다
code ~/.zshrc
vi ~/.zshrc
open ~/.zshrc

plugins line '#'으로 주석처리 및 cmd + S 저장

# 터미널에서 다음 명령어 실행
source ~/.zshrc

 

728x90