"autoload --help"를 실행한 후 zsh가 모듈 로드를 중지합니다.

"autoload --help"를 실행한 후 zsh가 모듈 로드를 중지합니다.

Brew를 사용하여 zsh를 설치했습니다.

내 거 .zshrc:

# installed packages
source $(brew --prefix)/opt/zsh-git-prompt/zshrc.sh
PROMPT='%B%m%~%b$(git_super_status) %# '

source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

. $(brew --prefix)/etc/profile.d/z.sh

zsh에 automplition 기능을 연결하는 방법을 알아내려고 노력 중입니다. 나는 달리기를 마친 후에 일을 autoload --help멈춘다 zsh-git-prompt.

실행하면 source ~/.zshrc다음과 같은 결과를 얻습니다.

/Users/kulikalov/.zshrc:source:2: no such file or directory: /usr/local/opt/zsh-git-prompt/zshrc.sh

답변1

실행하면 source ~/.zshrc다음과 같은 결과를 얻습니다.

source ~/.zshrc수동으로 수행할 필요는 없습니다 . .zshrcZsh를 시작할 때마다 리소스를 자동으로 가져옵니다.


/Users/kulikalov/.zshrc:source:2: no such file or directory: /usr/local/opt/zsh-git-prompt/zshrc.sh

zsh-git-prompt이는 아직 설치 하지 않았음을 의미합니다 brew. 이 작업을 수행하려면 를 실행해야 합니다 brew install zsh-git-prompt.

하지만,https://github.com/olivierverdier/zsh-git-prompt4년 동안 업데이트가 없었습니다. 나는 사용하는 것이 좋습니다https://github.com/romkatv/powerlevel10k대신에.


나는 달리기를 마친 후에 일을 autoload --help멈춘다 zsh-git-prompt.

당신이 여기서 무엇을 하려는지 모르겠지만 아마도 당신이 생각하는 효과가 없을 것입니다. 자세한 내용은 다음을 autoload읽어보십시오.

관련 정보