본문 바로가기

Ubuntu

Ubuntu 20.04 터미널 꾸미기

나중에 우분투를 다시 설치할 때를 대비해 성공했던 기록을 남긴다.

vim, git 설치

$ sudo spt-get install vim git

zsh 설치

$ echo $SHELL    # 지금 쓰고 있는 쉘 확인

$ sudo apt-get install zsh

$ sudo apt-get install curl    # curl 설치

oh my zsh 설치

ohmyzsh github 참고. 설치 중 default shell을 zsh로 바꾸겠냐고 하면 Y.

$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

oh my zsh이 정상 설치되면 커맨드 라인 -> ~ 이렇게 바뀌고 지금 쓰고 있는 쉘을 확인했을 때 zsh이 나온다.

설치를 다 했는데 -> ~ 이게 안 뜨고 이전 bash shell 때의 모양 그대로라면 oh my zsh을 밀고 다시 설치해야 된다.

폰트 설치

$ sudo apt-get install fonts-powerline

플러그인 설치

zsh-autosuggestions github

zsh-syntax-highlighting github

$ cd ~/.oh-my-zsh/plugins    # 여기에 플러그인 클론하기

$ git clone https://github.com/zsh-users/zsh-autosuggestions

$ git clone https://github.com/zsh-users/zsh-syntax-highlighting

$ vi ~/.zshrc

 

이후 zsh 설정 파일(~/.zshrc)에서 plugins=(git) 이라고 되어있는 부분에 내가 설치한 플러그인을 추가해야 된다.

plugins=(git zsh-autosuggestions zsh-syntax-highlighting) 

 

zsh 설정 파일(~/.zshrc)에서 ZSH_THEME을 다양하게 바꿀 수 있다. 참고 링크

default는 robbyrussel, 사람들이 많이 쓰는 건 agnoster. random으로 설정할 수도 있다.

 

컴퓨터를 재시작하지 않고도 변경사항을 적용하려면 source를 해준다. 터미널 창을 새로 켤 때마다 해야된다.

$ source ~/.zshrc