멋진 터미널 설정
멋진 터미널 설정
macOS에서 Oh My Zsh 및 Starship과 함께 셸 사용
일부는 fish shell 대화식의 사용자 친화적이고 현대적인 셸을 사용합니다. 그러나 POSIX sh 호환성이 없습니다. 물고기를 기본 셸로 사용하면 시스템 일부가 손상될 수 있습니다. 이 게시물에서는 zsh에 중점을 둘 것입니다. 강력한 플러그인으로. 강력한 대화식 인터페이스를 가질 수 있습니다.
Z 쉘(zsh) 설치
brew install zsh
Oh My Zsh(omz) 설치
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
zsh를 기본 쉘로 설정
chsh -s /usr/local/bin/zsh
Oh My Zsh 플러그인 설치
클론 zsh-autosuggestions , zsh-syntax-highlighting 및 zsh-completions .
git clone https://github.com/zsh-users/zsh-autosuggestions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-completions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-completions
로드할 Oh My Zsh용 플러그인 목록에 플러그인을 추가합니다(~/.zshrc 내부):
plugins=(
# other plugins...
zsh-autosuggestions
zsh-syntax-highlighting
zsh-completions
)
Starship.rs (Rust로 작성된 빠르고 멋진 프롬프트)
터미널에 Nerd Font을 설치하고 활성화해야 합니다.
Fira Code Nerd Font을 설치하겠습니다.
brew tap homebrew/cask-fonts
brew install --cask font-fira-code-nerd-font
터미널 환경 설정을 열고 방금 다운로드한 글꼴을 활성화하십시오.
⌘,
~/.zshrc
끝에 다음을 추가합니다.eval "$(starship init zsh)"
결과
Reference
이 문제에 관하여(멋진 터미널 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hackinggate/setup-your-fancy-terminal-2lea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)