반응형
zsh plugin 오류
zsh 설치하다가 다음과 같은 오류가 발생했는데, 해결방법에 대한 한국어 자료가 없는 것 같아서 정리한다.
ch4rli3kop in [~] 14:20:45 › zsh
[oh-my-zsh] plugin 'git,' not found
[oh-my-zsh] plugin 'zsh-autosuggestions,' not found
[oh-my-zsh] plugin 'zsh-syntax-highlighting,' not found
다음과 같이 .zshrc 파일에서 plugins이 ,를 사용해서 구분되면 위와 같은 오류가 발생한다.
# ~/.zshrc
plugins=(git, zsh-autosuggestions, autojump)
밑에처럼 수정하면 해결
# ~/.zshrc
plugins=(
git
zsh-autosuggestions
autojump
)
반응형
'Information* > Troubleshoot' 카테고리의 다른 글
Trouble shoot with installing gef (0) | 2022.08.29 |
---|---|
How to install binary ninja python API (in mac m1) (0) | 2022.08.25 |
Hyper-v 로그인 화면 안 뜰 때 (0) | 2022.05.20 |
wslregisterdistribution failed with error: 0x80370102 (0) | 2021.10.05 |
WinAFL build error (0) | 2021.09.30 |