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
'기타' 카테고리의 다른 글
[기타] SPA vs MPA (0) | 2021.11.19 |
---|---|
[기타] 프로세스 스케줄링 기법 (0) | 2021.11.18 |
GitHub 개인 액세스 토큰을 사용하는 방법 (0) | 2021.08.19 |
[기타] 크롬 확장 프로그램 추천 (0) | 2021.08.17 |
[AWS] ALB를 사용하여 소스 IP를 제한하는 방법(IP Blocking) (0) | 2021.07.30 |