개발/linux

zsh 꾸미기

cozynow 2020. 3. 14. 03:27

1. 현재 shell 확인

$ echo $SHELL

2. https://ohmyz.sh/설치하기

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

3. 그중에 내게 맞는테마 :

 

4. 추가 플러그인으로 마무리

 zsh-autosuggestions fast-syntax-highlighting

 

zdharma/fast-syntax-highlighting

Contribute to zdharma/fast-syntax-highlighting development by creating an account on GitHub.

github.com

#내가 찾는 나의 색
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#0d0d0d,bg=white,bold,underline"
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/plugins/zsh-autosuggestions
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh

git clone https://github.com/zdharma/fast-syntax-highlighting ~/.oh-my-zsh/plugins/fast-syntax-highlighting
source ~/.oh-my-zsh/plugins/fast-syntax-highlighting