Windows에 Zsh 설치

3046 단어 zshwidnowswebdev
이것은 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로


  • zsh ..tar 파일의 모든 내용을 이 폴더에 추출합니다
  • .
  • 측면 터미널 유형: zsh

  • 구성 파일 만들기




    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.

    좋은 웹페이지 즐겨찾기