Windows에 Zsh 설치
Git SCM과 함께 Windows 터미널이 이미 설치되어 있다고 가정합니다.
그러나 어떤 이유로 GitBash + ZSH가 플러그인 설치에 정말 순조로운 경험인 것 같습니다. 특히 자동 맞춤법 수정 :P
시사
여기서 시작:
최신 ZSH 설치
https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
선택적 Windows에 PeaZip 설치
https://peazip.github.io/
winget install -e --id GiorgioTani.PeaZip
CD에서 C:\Program Files\Git로
구성 파일 만들기
autoload -U zsh-newuser-install
zsh-newuser-install -f
마지막으로 메모장을 엽니다 ~/.bashrc
if [ -t 1 ]; then
exec zsh
fi
플러그인 설치
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions
git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-autosuggestions
notepad ~/.zshrc
# Which plugins would you like to load?
.plugins=(git lighthouse zsh-completions zsh-autosuggestions zsh-syntax-highlighting)
ps. You can even use Oh-my-posh with Terminal 7.xx + on windows.
Reference
이 문제에 관하여(Windows에 Zsh 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ajinkyax/install-zsh-on-windows-1odo텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)