본문 바로가기

기타

Oh My Zsh에 자동완성 기능 추가

728x90

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