기타
[draft] Oh My Zsh에 자동완성 기능 추가
SangChul Dot Kr Blog
2026. 1. 29. 19:49
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