맥(솔라리스)
Oh My Zsh에 자동완성 기능 추가
변군이글루
2021. 10. 13. 09:06
반응형
Oh My Zsh에 자동완성 기능 추가
zsh-autosuggestions 레포를 oh-my-zsh 플러그인 폴더에 clone
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
zsh-syntax-highlighting 레포를 oh-my-zsh 플러그인 폴더에 clone
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
.zshrc 편집
vim ~/.zshrc
...
plugins=(
git
zsh-autosuggestions
zsh-syntax-highlighting
)
...
source ~/.zshrc
728x90
반응형