GitHub codespaces의 ZSH 설정 가이드
3293 단어 githubcodespaceszshstarship
ZSH 설정
이 게시물은 zsh 제안 및 codespace에 대한 zsh 구문 강조 표시와 함께 starship을 설정하는 방법을 안내합니다.
목차
우주선 설정
단말기를 아름답게 꾸미고 싶다면 옵션 패키지입니다. 그렇지 않으면 다른 ZSH 테마를 사용할 수도 있습니다.
우주선 설치
You cannot install starship in ZSH shell at the time of writing this. You can switch to bash.
curl -sS https://starship.rs/install.sh | sh
ZSH 파일에서 구성 설정
echo "eval \"\$(starship init zsh)\"" >> ${ZSOTDIR:-$HOME}/.zshrc
ZSH 자동 제안 설치
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
You can change the path to anything you want. Here we use
~/.zsh/zsh-autosuggestions
echo "source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ${ZSOTDIR:-$HOME}/.zshrc
ZSH 구문 강조 표시 설치
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.zsh/zsh-syntax-highlighting
echo "source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
참고: 터미널에
Systemd
가 표시되고 이를 제거하려면 다음 명령을 따르십시오.mkdir -p ~/.config && printf "[container]\ndisabled = true" >> ~/.config/starship.toml
짜잔! Starship 및 ZSH 자동 제안 및 구문 강조 표시와 함께 ZSH를 사용할 준비가 되었습니다.
마음에 드시면 github에서 저를 팔로우해 보세요.
Reference
이 문제에 관하여(GitHub codespaces의 ZSH 설정 가이드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/krish_agarwal/setup-guide-for-zsh-in-github-codespaces-5152텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)