728x90
1. 터미네이터 설치
sudo apt-get install terminator
2. zsh 설치
apt-get install zsh
chsh -s $(which zsh)
echo $SHELL
3. ohMyZsh 설치(쉘 설정 쉽게 해줌)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
또는
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- 플러그인(zsh-autosuggestions)-자동완성
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
.zshrc 파일을 수정합니다.
plugins=(git zsh-autosuggestions)

이제 Ctrl+E 나 End키로 자동완성이 가능합니다.
- 플러그인(syntax Highlighting)- 구문강조
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
.zshrc 파일을 수정합니다.
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
4. ohMyZsh 테마 수정
.zshrc 파일을 수정합니다.
ZSH_THEME="dpoggi"
적용
source ~/.zshrc
테마 종류는 다음과 같습니다.
https://github.com/ohmyzsh/ohmyzsh/wiki/themes
'컴퓨터' 카테고리의 다른 글
| i9-13900k 언더볼팅 ASRock (274) | 2023.12.05 |
|---|---|
| [키보드] Monsgeek m3w 풀알루 3모드 텐키리스 키보드 (404) | 2023.11.06 |
| [디즈니+] 멤버십 환불 신청하기 (196) | 2023.11.01 |
| [KVM] 여러대의 PC를 하나의 키보드, 마우스로 쓰기, 윈도우-리눅스 지원 (226) | 2023.10.31 |
| git@github.com: Permission denied (publickey) 에러 (229) | 2023.09.14 |
